- or download this
{
# body
...
if ...;
# tail
# post
- or download this
{
# body
...
# body
} until( ! ... );
# post
- or download this
# bare block "loop":
...
# body
}
# post
- or download this
{
# top
...
# tail
END:
# post
- or download this
LOOP: {
try something;
...
if failed;
sleep $seconds;
}
- or download this
while( ! try_something() ) {
sleep $seconds;
}