#! /bin/sh

echo "You have $# parameters.  They are:"
i=0
while [ $# -gt 0 ]
do
    i=`expr $i + 1`
    echo parameter $i: $1
    shift
done
