diff options
author | Nami-Doc <vendethiel@hotmail.fr> | 2014-08-23 13:27:03 -0400 |
---|---|---|
committer | Nami-Doc <vendethiel@hotmail.fr> | 2014-08-23 13:27:03 -0400 |
commit | c0b1d2cae055b110d5a00ace64c487b9e9e4aae8 (patch) | |
tree | 6ec5b9d626f503b3fa6e7149b6069098a6482eb3 /bash.html.markdown | |
parent | 83b63aab543c2c7ece74f514ef12b1e068f463e4 (diff) | |
parent | 7bfbec395acc3ddd61b9cc1d7c4b0ee3877f250b (diff) |
Merge pull request #731 from SamuelMarks/master
-ne not equal
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 061d35b0..57fb5c55 100644 --- a/bash.html.markdown +++ b/bash.html.markdown @@ -73,9 +73,9 @@ echo Hello, $NAME! # use 'man test' for more info about conditionals if [ $NAME -ne $USER ] then - echo "Your name is your username" -else echo "Your name isn't your username" +else + echo "Your name is your username" fi # There is also conditional execution |