Hi i have the following:
bash_script parm1 a b c d ..n
I want to iterate and print all the values in the command line starting from a, not
You can use an implicit iteration for the positional parameters:
shift for arg do something_with $arg done
As you can see, you don't have to include "$@" in the for statement.
"$@"
for