Skip to content

v0.9.4

Compare
Choose a tag to compare
@ryuichiueda ryuichiueda released this 01 Dec 04:11
· 334 commits to main since this release

Implemented continue command

Like this:

### skip "echo NG" after the continue command ###
🍣 seq 2 | while read d ; do echo x; continue; echo NG ; done
x
x
### skip the outer loop with continue <num> ###
🍣 seq 2 | while read d ; do for a in a b ; do echo x; continue 2 ; done ; echo NG ; done
x
x