Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Hi, Does anyone know of a way to remove keywords from a variable if it exists? for example, if someone typed in "www.google.com", then it would be set to remove any "www."s that it finds? (making the variable "google.com")
Summary: I did a similar script like this to upload files from forms. It relied heavily on regular expressions, which is what I would use here. If you want the whole script, I'll e-mail it to you. But for n...
Summary: I want to remove '$' from a $ variable. I create a script, a.sh as below: #!/usr/bin/ksh a=`echo $1 | cut -d"\$" -f1` b=`echo $1 | cut -d"\$" -f2` echo $a$b However, this script does not work as I exp...
Summary: Here's an overview of what I'm trying to do: We have a number of employees that are running Office XP, Office 2003, Office 2007, plus Visio and Project, and they some are different versions. I am try...