while
runs the loop while the condition is true. until
runs the loop until the condition is true (i.e. while the condition is false).
See http://www.gnu.org/software/bash/manual/bashref.html#Looping-Constructs.
while
runs the loop while the condition is true. until
runs the loop until the condition is true (i.e. while the condition is false).
See http://www.gnu.org/software/bash/manual/bashref.html#Looping-Constructs.