summaryrefslogtreecommitdiff
path: root/qa/src/show-args
blob: 4fc3ed985bffec83647d1b32356c55d5e959bdfe (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
#
# quick and dirty "show me your arguments" tool

echo $0 called
i=1
for arg
do
    echo "arg[$i] $arg"
    i=`expr $i + 1`
done