diff options
author | Adam Bard <github@adambard.com> | 2014-02-12 12:02:29 -0800 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2014-02-12 12:02:29 -0800 |
commit | a23e5807ad0c241672eeb7eaffea4798f5954d01 (patch) | |
tree | 3a1d991d25e8b80b69ed8fad03d3771577cd6b04 | |
parent | 234916c279f5f1731a63070f9095e61578f9b8eb (diff) |
Update bash.html.markdown
use /bin/bash for bash, not /bin/sh
-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 a6bd2b7c..e2c5bbaf 100644 --- a/bash.html.markdown +++ b/bash.html.markdown @@ -15,7 +15,7 @@ Nearly all examples below can be a part of a shell script or executed directly i [Read more here.](http://www.gnu.org/software/bash/manual/bashref.html) ```bash -#!/bin/sh +#!/bin/bash # First line of the script is shebang which tells the system how to execute # the script: http://en.wikipedia.org/wiki/Shebang_(Unix) # As you already figured, comments start with #. Shebang is also a comment. |