Help..
I have an alias set up in my .profile to run a unix script.
I'd like to be able to 'pass' diffent values to the script.
I'm using /bin/sh
Here is the alias in my .profile
alias mycheck="/apps/scripts/file_check fred.txt"
I'd like to be able to pass other values to file_check besides
'fred.txt'.
I've tried
alias mycheck="/apps/scripts/file_check $1"
but when I run the 'alias' the value passed to file_check is 'vi', I
also tired $2 and the value passed was '-o'.
My confusion... This one works just fine..
alias mytest="ll \$1"
Thanks,
Glenn