According to my shell programming book the number of command line arguments differs between shells .
The standard is $0-$9 with $0 being assigned the shell program.
KSH and BASH can also use $10-$99 but to access these variables the shell program must be written as ${xx} where xx =10 - 99
|