until

NAME

until - execute commands until exit status is zero

SYNOPSIS

until list do list done

DESCRIPTION

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.