summaryrefslogtreecommitdiffhomepage
path: root/bash.html.markdown
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2014-02-12 12:02:29 -0800
committerAdam Bard <github@adambard.com>2014-02-12 12:02:29 -0800
commita23e5807ad0c241672eeb7eaffea4798f5954d01 (patch)
tree3a1d991d25e8b80b69ed8fad03d3771577cd6b04 /bash.html.markdown
parent234916c279f5f1731a63070f9095e61578f9b8eb (diff)
Update bash.html.markdown
use /bin/bash for bash, not /bin/sh
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 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.