8 lines
97 B
Bash
8 lines
97 B
Bash
#!/bin/bash
|
|
num=1;
|
|
while [ $# -gt 0 ]; do
|
|
echo argument $num is \"$1\".
|
|
shift
|
|
let num++
|
|
done
|