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
Another flavor, a bit shorter that keeps the arguments list
shift for i in "$@" do echo $i done