hush/shell/hush_test/hush-misc/continue1.tests

5 lines
116 B
Plaintext
Executable File

for v in a b c; do echo A:$v; continue 666; done
echo OK1
for v in a b c; do echo A:$v; continue 666; done
echo OK2