This commit is contained in:
Patrick Kloepfer 2019-10-29 17:43:50 -04:00
parent 4952620db8
commit 9097a3518b
2 changed files with 4 additions and 2 deletions

Binary file not shown.

View File

@ -23,9 +23,11 @@ echo begin shift test - SHIFT 3 TIMES
echo $*
shift
echo $*
shift
echo Shifting out 4
shift 4
echo $*
shift
echo Shifting out 2
shift 2
echo $*
Echo Done
MAN