6 lines
71 B
Plaintext
6 lines
71 B
Plaintext
|
numargs=$#
|
||
|
for ((i=1 ; i <= numargs ; i++)); do
|
||
|
echo "$1"
|
||
|
shift
|
||
|
done
|