#!/bin/sh
echo numargs=$#
for i in $*
do
	echo $i
done
echo another version
for i in $*
do
	echo $1
	shift
	echo numargs=$#
done
