diff options
author | root <root@learnxinyminutes.com> | 2018-08-25 02:38:11 +0000 |
---|---|---|
committer | root <root@learnxinyminutes.com> | 2018-08-25 02:38:11 +0000 |
commit | afd18bd4ed4a898e493e99459cc72aaf97163272 (patch) | |
tree | 4770ac0eafe30e8b4e81c573a13b519ec37dfda6 /bash.html.markdown | |
parent | 6f2003a31f900c1ce3ff1dde64b17c7ac02350cc (diff) | |
parent | 5359298b0d5bd3f18cdd8521abf41e8048cac5f6 (diff) |
Merge branch 'master' of https://github.com/adambard/learnxinyminutes-docs
Diffstat (limited to 'bash.html.markdown')
-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 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. |