hush/shell/hush_test/hush-misc/continue1.tests
Denis Vlasenko 4554b721ad hush: small fix for repeated continue and fix for wrong loop depth count
after Ctrl-C; with testcase for first one
2008-07-29 13:36:09 +00:00

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