#!/bin/sh #this shows my positional parameters echo The program '$0' is $0 echo The first positional parameter is '$1' is $1 echo The second positional parameter is '$2' is $2 echo The third positional parameter is '$3' is $3 echo '$#' is the number of command line args echo $# echo ________________________ echo '$*' is a space delimited list of all args in 1 string echo $* #