sudo_signed_scripts/test/test_script__v0
Gregor Féng a2970ce9d4
Initial checkin
Signed-off-by: Gregor Féng <gfeng@noreply.quell.metalcoder.de>
2025-04-21 20:32:29 +02:00

15 lines
157 B
Bash
Executable file

#!/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