#! /bin/sh
# demo2

echo I am the powerful $0 command!
case $# in
 0) echo I was called without parameters ;;  
 *) echo my parameters:
   for i in $*
   do
    echo $i
   done  ;;
esac
