Edit wording of while loop in bash.

This commit is contained in:
Levi Bostian 2013-09-19 16:48:09 -05:00
parent c4f541dc92
commit de5a359faa

View File

@ -53,10 +53,10 @@ else
echo "And this is not"
fi
# And the usual while loop:
# while loop:
while [true]
do
echo "put loop content here..."
echo "loop body here..."
break
done