diff options
author | Aidas Bendoraitis <aidasbend@yahoo.com> | 2018-07-25 23:58:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-25 23:58:31 +0200 |
commit | 6f0aec01c577e44b1ea3260f786ef3527eebf204 (patch) | |
tree | 72ef7d8c92fc277b1719b9628c869ffdb04a259a | |
parent | 0d211d341913305bd1d97e5d097898eb7faa1354 (diff) |
shebang updated
-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 3f3e49eb..f2a72fdb 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. |