From 659b9b2d51b80922c7d3e6ad956da298da43f5ad Mon Sep 17 00:00:00 2001 From: Gibran Malheiros Date: Wed, 3 Jan 2018 16:21:51 +0100 Subject: [PATCH] updated shebang to use env (#67) https://unix.stackexchange.com/questions/29608/why-is-it-better-to-use-usr-bin-env-name-instead-of-path-to-name-as-my --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 78422b9..7f5f26a 100644 --- a/README.md +++ b/README.md @@ -934,7 +934,7 @@ nohup command & The first line that you will write in bash script files is called `shebang`. This line in any script determines the script's ability to be executed like a standalone executable without typing sh, bash, python, php etc beforehand in the terminal. ```bash -#!/bin/bash +#!/usr/bin/env bash ``` ## 2.1. Variables