1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-31 20:10:49 +02:00

Update bash.html.markdown

use /bin/bash for bash, not /bin/sh
This commit is contained in:
Adam Bard
2014-02-12 12:02:29 -08:00
parent 234916c279
commit a23e5807ad

View File

@@ -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.