15 lines
157 B
Bash
Executable file
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
|
|
|