summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/args/runme.sh
blob: af1c31d79bf3f4f13502e82e46f1ffbdd81c2478 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash

set -eu

echo "arg[#]: $#"
echo "arg[0]: $0"

i=0
for arg in "$@"; do
    i=$((i+1))
    echo "arg[$i]: ${arg}"
done