#!/bin/sh #************************************************** #* * #* This shell script allows the user to enter * #* arguments on the command line. It displays * #* the arguments entered * #* * #************************************************** echo "number of arguments = $#" echo $1 echo $2 echo $3 echo $4 echo $5