SyntaxFix
Write A Post
Hire A Developer
Questions
This implementation:
do=true while $do || conditions; do do=false # your code ... done
It works with a read loop, too, skipping the first read:
do=true while $do || read foo; do do=false # your code ... echo $foo done