Please help, I can only see forums with this question for Bash, KSH, and others
Need to apply it on csh.
to check if the inputted $2 is not number nor the word "all"
if ($#argv == 2 && ($2 != all && $2 != **any number**)) then
echo "wrong parameter"
Thanks in advance!