nt9856x/BSP/busybox/shell/ash_test/ash-misc/continue1.tests
2023-03-28 15:07:53 +08: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