added test
This commit is contained in:
parent
3fea14f998
commit
d30becdf72
1 changed files with 9 additions and 0 deletions
9
test.sh
Executable file
9
test.sh
Executable 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
|
Loading…
Reference in a new issue