On Mon, 2009-08-17 at 19:55 +0100, James Bensley wrote:
I can't think of the exact syntax at the minute but something like;
if $# => 4 then for i = 1 to ($# - 4) echo "arg number $i is $expr($i)" next fi
$ echo $* 1 2 3 4 $ \
while [ "$1" != '' ] ; do echo $1 shift done
1 2 3 4 $
<snip>