summaryrefslogtreecommitdiffhomepage
path: root/bash.html.markdown
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2018-08-24 12:58:41 -0700
committerGitHub <noreply@github.com>2018-08-24 12:58:41 -0700
commitef105ab9e76db76546574c6b3d582b412de580b2 (patch)
treed91680c29e0f5fc60d327669dd5787112144b37f /bash.html.markdown
parentb3049e4279cd24d4247b21fd079a1ce275d2fcd9 (diff)
parent6f0aec01c577e44b1ea3260f786ef3527eebf204 (diff)
Merge pull request #3167 from archatas/patch-1
shebang updated
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 d1e6bf25..cb805da7 100644
--- a/bash.html.markdown
+++ b/bash.html.markdown
@@ -25,7 +25,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/bash
+#!/usr/bin/env 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.