From 843e26c48148916025ff81fc35b050b0f8393c37 Mon Sep 17 00:00:00 2001 From: Gibran Malheiros Date: Wed, 3 Jan 2018 13:43:50 +0100 Subject: [PATCH] updated shebang to use env 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