Quote:
|
Thank you. I do have a question where in the second part are you checking for the Keyword so elements can be put into a string
|
The 'shift' in the first part has dropped these off the parameter list.
Try...
Code:
set a b c d
echo $@
shift
echo $@
You can simplify the second part if you code like this...
Code:
set -A theRightPartArray $@
I believe that should work in bash.
Damian