until - execute commands until exit status is zero
until list do list done
This command is a Korn-shell built-in command.
The until(1) command works like while(1), except that the body is executed only while the exit status of the first list is non-zero.