Hey,
I'm writing a shell script (tcsh) that is supposed to received 3 parameters or more. The first 3 are to be passed to a program, and the rest are supposed to be passed to another program. All in all the script should look something like:
./first_program $1 $2 $3
./second program [fourth or more]
The problem is that I don't know how to do the latter - pass all parameters that are after the third.