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

while [shells]

while command
do
  command
  # leave the while 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 (;).