I have a program that excepts a -q# option
I am able to check for the -q option using:
if ($argv[2] =~ -q*) then
echo "got a -q"
but now i want to store everything after the -q in a variable.
ex. mycommand -q91 (i want the 91 in a variable)
Neil