René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

until [shells]

until command
do
  command
  # leave the until loop with break
  # or use continue to skip following parts
  command
done
The keywords while, do and done must either be the first in the line or preceded by a semicolon (;).