summaryrefslogtreecommitdiffhomepage
path: root/bash.html.markdown
diff options
context:
space:
mode:
authorLumenTeun <anton@lutic.org>2014-08-08 18:11:17 +0100
committerLumenTeun <anton@lutic.org>2014-08-08 18:11:17 +0100
commit8be20de321b2331ab717319ca3c57c460a85de7f (patch)
treef9524b9f2fe342be506a75f505d7c436be9822f5 /bash.html.markdown
parent2cfc0752b4f9ab833e088261b5450a4fd6ff2fa6 (diff)
Fixed while loop.
Diffstat (limited to 'bash.html.markdown')
-rw-r--r--bash.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash.html.markdown b/bash.html.markdown
index 845ebead..96f2414d 100644
--- a/bash.html.markdown
+++ b/bash.html.markdown
@@ -141,7 +141,7 @@ do
done
# while loop:
-while [true]
+while [ true ]
do
echo "loop body here..."
break