diff options
author | LumenTeun <anton@lutic.org> | 2014-08-08 18:11:17 +0100 |
---|---|---|
committer | LumenTeun <anton@lutic.org> | 2014-08-08 18:11:17 +0100 |
commit | 8be20de321b2331ab717319ca3c57c460a85de7f (patch) | |
tree | f9524b9f2fe342be506a75f505d7c436be9822f5 | |
parent | 2cfc0752b4f9ab833e088261b5450a4fd6ff2fa6 (diff) |
Fixed while loop.
-rw-r--r-- | bash.html.markdown | 2 |
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 |