diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2013-09-20 22:00:14 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2013-09-20 22:00:14 -0500 |
commit | 06265eba7a04a765ff5b19ab57353705dd79582e (patch) | |
tree | 708c0b0c79f239ca596b4361c7edb1ab74e3a55c /bash.html.markdown | |
parent | 2ef41199266fefc868dd28c3e0ac5dc55daf9d8f (diff) | |
parent | f28d33fb187bc834e6e2956117039f9abe3b6d9b (diff) |
Merge
Diffstat (limited to 'bash.html.markdown')
-rw-r--r-- | bash.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bash.html.markdown b/bash.html.markdown index 1473e669..2faa4988 100644 --- a/bash.html.markdown +++ b/bash.html.markdown @@ -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 |