added test

This commit is contained in:
panda 2020-04-16 15:42:42 +02:00
parent 3fea14f998
commit d30becdf72

9
test.sh Executable file
View file

@ -0,0 +1,9 @@
#!/usr/bin/env bash
set -- A B "C"
for a; do
shift
for b; do
printf "%s - %s\n" "$a" "$b"
done
done