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

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