Bash Until LoopIn this topic, we have defined how to use until loop statement in Bash Script. The while loop is a great option to execute a set of commands when some condition evaluates to true. Sometimes, we need to execute a set of commands until a condition evaluates to true. In such cases, Bash until loop is useful. Bash Until Loop in a bash scripting is used to execute a set of commands repeatedly based on the boolean result of an expression. The set of commands are executed only until the expression evaluates to true. It means that when the expression evaluates to false, a set of commands are executed iteratively. The loop is terminated as soon as the expression evaluates to true for the first time. In short, the until loop is similar to the while loop but with a reverse concept. SyntaxThe syntax of until loop looks almost similar to the syntax of bash while loop. But there is a big difference in the functionalities of both. The syntax of bash until loop can be defined as: If there are multiple conditions in the expression, then the syntax will be as follows: Some of the key points of until loop are given below:
The while loop vs. the until loop
Examples of Bash Until LoopFollowing are some examples of bash until loop illustrating different scenarios to help you understand the usage and working of it: Until Loop with Single ConditionIn this example, the until loop contains a single condition in expression. It is the basic example of until loop which will print series of numbers from 1 to 10: Example Output Until Loop with Multiple ConditionsFollowing is an example with multiple conditions in an expression: Example Output ConclusionIn this topic, we have learned about the syntax of until loop statement in bash scripting for single and multiple conditions in expression with example scripts.
Next TopicBash String
|