filmov
tv
Shell Script Looping statement - Until loop

Показать описание
The until loop works straight opposite to while loop evaluation, The until loop is used to execute a given set of commands as long as the given condition evaluates to false. test operator test the given condition and if the condition is true, block will exit from loop and if condition is false, loop will execute set of commands.
until loop is useful for error handling.
until loop is useful for error handling.