Initial checkin

Signed-off-by: Gregor Féng <gfeng@noreply.quell.metalcoder.de>
This commit is contained in:
Gregor Féng 2025-04-21 20:32:29 +02:00
commit a2970ce9d4
Signed by: gfeng
SSH key fingerprint: SHA256:deW8cXObR21OyWcjMUl4eV/raeUyU8SfRl8nSDqPMdA
4 changed files with 35 additions and 0 deletions

1
test/test_script Symbolic link
View file

@ -0,0 +1 @@
test_script__v0

15
test/test_script__v0 Executable file
View file

@ -0,0 +1,15 @@
#!/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