sudo_signed_scripts/test/test_script__v0

16 lines
157 B
Text
Raw Permalink Normal View History

#!/usr/bin/env zsh
# vim:ft=zsh:
setopt no_unset # xtrace
echo "running [${0}]"
for i in $(seq 1 ${#}); do
echo "\t${i} ]--\t${@[${i}]}"
done
exit 0