#!/bin/bash #This shows the number of command line args echo The VALUE of '$1' is now $1 echo You entered $# command line args. shift #the shift threw out the first command line arg echo You now have $# command line args left. echo The VALUE of '$1' is now $1