#!/bin/sh #this shows my positional parameters echo The program '$0' is $0 echo The PID of this program is '$$' is $$ echo '$#' is the number of command line args it is: $# echo ________________________ echo '$*' is a space delimited list of all args in 1 string it is: $* #