#! /bin/sh
# demo3

echo I am the powerful $0 command!
if ( test $# = 0)
then
 echo I was called without parameters 
else  
 echo my parameters:
   for i in $*
   do
    echo $i
   done  
fi
