Open In App

until command in Linux with Examples

Last Updated : 27 May, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

until command in Linux used to execute a set of commands as long as the final command in the ‘until’ Commands has an exit status which is not zero. It is mostly used where the user needs to execute a set of commands until a condition is true.

Syntax:

until COMMANDS; do COMMANDS; done

Here, if the COMMANDS get evaluated to false then the statements will be executed. If the COMMANDS get evaluated to true then the no statements will be executed and control will go after the done statement.

Example:

Options:

  • help until : It displays help information.


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads