#!/bin/ksh
# File: looper
# Echo command line parameters using $1 and shift.

while [ $# -gt 0 ]
do
   echo $1
   shift
done
