- Make Linux/Unix Script Portable With #!/usr/bin/env As a Shebang
- #!/usr/bin/env As a Shebang
- Make Linux/Unix Script Portable With #!/usr/bin/env As a Shebang
- Using env in the shebang of a script
- Perl example
- Python2.x example:
- Another example with python3:
- Is env always located at /usr/bin/env
- Use shellcheck
- Conclusion
Make Linux/Unix Script Portable With #!/usr/bin/env As a Shebang
Y ou may notice that most shell and Perl script starts with the following line:
#!/bin/bash
OR
#!/usr/bin/perl
Let us find out why is it a good idea to use #!/usr/bin/env bash instead of #!/bin/bash as shebang?
#!/usr/bin/env As a Shebang
The #! is called a shebang. It consists of a number sign and an exclamation point character (#!), followed by the full path to the interpreter such as /bin/bash. All scripts under Linux, *BSD, macOS, and Unix-like system execute using the interpreter specified on a first line. However, there is a small problem. BASH or Perl is not always in the same location (PATH) such as /bin/bash or /usr/bin/perl. If you want to make sure that script is portable across different UNIX like operating systems you need to use /usr/bin/env command as shebang.
Fig.01: My Perl script start with /usr/bin/env
Make Linux/Unix Script Portable With #!/usr/bin/env As a Shebang
The env command allows to run a program in a modified environment. First, find line
#!/bin/bash
Replace with
#!/usr/bin/env bash
For example here is a small bash shell script:
The advantage of #!/usr/bin/env bash is that it will use whatever bash executable appears first in the running user’s $PATH variable. If you have two version of bash installed as follows and PATH set to /home/vivek/bin:/usr/local/bin:/usr/bin:/bin:/usr/games/bin:/bin:/usr/bin, than bash4 will execute the script:
Using env in the shebang of a script
env is a shell command for Unix-like operating systems. We can use it for various purposes. For example:
- Display a list of environment variables
- Run another command in a modified environment
- Add or remove variables
- Change the value of existing variables
To show current environment variables defined by your shell, run env command:
env
We can filter out infromation using the grep command/egrep command as follows:
env | grep HOME
env | egrep ‘HOME|USER|VERSION|SHELL|PWD’
- No ads and tracking
- In-depth guides for developers and sysadmins at Opensourceflare✨
- Join my Patreon to support independent content creators and start reading latest guides:
- How to set up Redis sentinel cluster on Ubuntu or Debian Linux
- How To Set Up SSH Keys With YubiKey as two-factor authentication (U2F/FIDO2)
- How to set up Mariadb Galera cluster on Ubuntu or Debian Linux
- A podman tutorial for beginners – part I (run Linux containers without Docker and in daemonless mode)
- How to protect Linux against rogue USB devices using USBGuard
Join Patreon ➔
Let us see some more examples.
Perl example
Python2.x example:
Another example with python3:
Is env always located at /usr/bin/env
You can use the type command or command command to locate exact path for the env command:
type env
command -V env
Sample outputs:
Some info from various *nix systems:
OS | env path |
---|---|
OpenBSD | /usr/bin/env |
FreeBSD | /usr/bin/env |
Debian | /usr/bin/env |
Ubuntu | /usr/bin/env |
CentOS | /usr/bin/env |
macOS | /usr/bin/env |
SUSE | /usr/bin/env |
RHEL | /usr/bin/env |
NetBSD | /usr/bin/env |
Solaris | /usr/bin/env |
Use shellcheck
ShellCheck is a static analysis tool for shell scripts. One can use it to finds bugs in your shell scripts. It is written in Haskell. You can find warnings and suggestions for bash/sh shell scripts with this tool. Let us see how to install and use ShellCheck on a Linux or Unix-like system to enhance your shell scripts, avoid errors and productivity.
Conclusion
I just made my Linux/Unix script portable with #!/usr/bin/env . The env-mechanism is hugely enhancing convenience, and almost all Unix like systems today provide /usr/bin/env. I regular use FreeBSD, CentOS/RHEL/Ubuntu/Debian/SUSE Linux, macOS, and OpenBSD and all of them provided /usr/bin/env by default. Now you do not have to search for a program via the PATH environment variable. It makes the script more portable. Also, note that it is not a foolproof method. Always make sure you have /usr/bin/env exists or use a soft link/symbolic link to point it to correct path for env command. Moreover, your work or script looks more professional with this simple hack. See env command man page (documentation) or type the following man command:
$ man bash
$ man env
Category | List of Unix and Linux commands |
---|---|
Documentation | help • mandb • man • pinfo |
Disk space analyzers | df • duf • ncdu • pydf |
File Management | cat • cp • less • mkdir • more • tree |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Linux Desktop Apps | Skype • Spotify • VLC 3 |
Modern utilities | bat • exa |
Network Utilities | NetHogs • dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • glances • gtop • jobs • killall • kill • pidof • pstree • pwdx • time • vtop |
Searching | ag • grep • whereis • which |
Shell builtins | compgen • echo • printf |
Text processing | cut • rev |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
Comments on this entry are closed.
I am confused.
Why is /usr/bin/env more portable than /bin/bash.
Besides on most linux distros bash is found in /bin, but env is not guaranteed to be found under /usr/bin.
e.g. in my case (FC5) env is under /bin.
My point is , which ever way you need to know the absolute path to either env, or bash, so why bother ?
If you move from Linux distro to BSD you will see bash is located at /usr/local/bin/bash OR to Solaris you will see bash at /opt or some other location. Instead of adjusting all the location admin can create a /usr/bin/env softlink and problem solved. Just imagine you have 100s of shell and perl scripts…
This is not just about Linux. It is about running a script under different UNIX like oses.
Thanks for “shebang” and its explanation. Its really helpful.
The only problem I have with env, that on some systems lacking ‘use warnings’, I can’t pass ‘-w’ on command line. Or is it possible somehow?
You can pass /bin/path/to/mybinary -w
I do not feel very comfortable with the security aspects of this hack.
It may be more portable but it reduces control.
Bash and other shells are hardened so that they can be used for admin jobs withstanding tampering efforts by non root users.
Using the described “env” solution may introduce vulnerabilities which are difficult to oversee or analyze.
Instead of linking env and using it to deal with compatibity I rather add compatibility links to my systems which link bash or perl to a uniform location e.g. ln -s /usr/local/bin/bash /bin/bash
Terrible advice. Do not do this. Portability should stem from your installion routines, not some security and design problem causing hack.
@Terrible
You could be correct, but I’d like to hear your opinion of why exactly is it more harmful?
Well, it runs the command, perl for example, like you would run perl by hand – so I assume it searches via PATH – I can see that individual user may then create executable ‘perl’ of his own under his home directory and change PATH so that env will call that… However that already means that user in question is doing this on purpose, in which case he could just call the harmful program himself – no need to even include the script, perl nor env on that and if done that way it would not affect other users which would still get to run the script as intended.
However security and holes in it can be complex issues and I’m not a professional at all… If indeed using env is more of a possible security issue than creating shebang pointing right to correct interpreter in install routine I would love to learn why exactly is it safer, about possible security issues in using env, etc.
I would think that when installed system wide both ways would be as safe – and one trying to do harm could install the whole software locally under his home directory anyway but could not alter what is ran when other users call the script in question – not understanding makes me even more curious, but most importantly I want to ensure security…
Imagine a trojan ‘bash’ placed in ‘/tmp’.. An sa with sudo all nopasswd.. Their path has ‘.’ at the beginning.. CWD as ‘/tmp’.. Now imagine them executing any of their scripts with this hack?
That’s a lot of stars to align, but remember.. you only need this to happen once! The patient will be rewarded!
>Imagine a trojan ‘bash’ placed in ‘/tmp’.. An sa with sudo all nopasswd.. Their path has ‘.’ at the beginning.. CWD as ‘/tmp’.. Now imagine them executing any of their scripts with this hack?
How did a trojan arrive in /tmp ?
Their path has ‘.’ at the beginning.. -> Call you trojan ls and you have way more chance for this to work… Don’t put ‘.’ in PATH.
I couldn’t agree more.. again, just giving an example.. no matter how implausible.
Even the official python tutorial website is using:
#! /usr/bin/env python
http://docs.python.org/tutorial/interpreter.html
Here’s an idea, instead of wasting cpu and peoples time, suggest a link to /bin/bash always. This stupid idea of using env command is a waste of the unix operating system.
Symbolic links were created to solve problems exactly like this. Some idiot came up with the great idea to make it more complicated by suggesting a link to bin env… I swear this is absolutely retarded.
Quit being lazy and put a proper link in /bin. What is the point in spawning processes you don’t need? More professional? According to who? The idiots who never wrote a single program of assembler code in their life? The idiots who couldn’t write a bash script to remove duplicate words from a list without resorting to external commands?
Oh yeah, you must mean those idiots…. The one’s who couldn’t code their way out of wet paper sack.
And another thing, if its really that important to be portable, and you can’t create a link in /bin then your scripts need to be auto-generated on-site with the proper header line.
Quit wasting resources and practice efficiency. Wastefulness is a bad habit that not only adds up, but is certain to be a perpetual mistake.
Are you seriously saying that a person is an idiot just because of this? You look like one acting like you are the only one who knows… Just saying.
@Triston J. Taylor
I came here to solve a problem with the python interpreter changing based on which python virtual environment was activated at a given time. Remapping the symlink doesn’t work at all as I may have one shell in one environment and another in a completely different one – it invokes different python symlinks. Using env fixes this perfectly.
One problem with /usr/bin/env SomeCmd is you can’t pass additional arguments.
So you can’t /usr/bin/env SomeCmd -someArg -someOtherArg
Why? Because /usr/bin/env doesn’t support passing those as arguments on same platforms.
It is not a portable solution. On Windows you could have C:cygwin64binenv.exe instead of /usr/bin/env.
So assuming the path of env is not a portable solution.
I just want to add to this now seven-year-old conversation that modern developers often change their development environment depending on which project they are working on.
For example using rvm you might often change which version of the ruby interpreter you are using to ensure compatibility across different versions or to work on legacy code. Switching rubies switches your PATH to point to whichever ruby you are using.
Additionally a developer may want to develop in a different version of say, python, than the version that ships with OS X, but doesn’t want to overwrite the system’s version or uninstall it because they know they do not know what the consequences of doing so. Using a package manager like Homebrew makes it easy to install scripting languages for the local user rather than forcing you to install it as root. Is that not more secure?
In each of these scenarios you want to be using /usr/bin/env in your scripts because hard-coding the binary location is not practical and will be irritating to anyone else on your team if you try and pass off a script with something like #!/Users/joejimbob/.rvm/rubies/ruby-1.9.3-p286/bin/ruby at the top. Saying MY script doesn’t work because YOU don’t know how to symlink might earn me 3 or 4 old school points, but I would still be a jerk.
As for being wasteful, trading end-user CPU cycles for a shorter development time and broader compatibility is the world we live in. Rejecting this and calling people lazy for it, is an obsolete way of thinking and shows a distrust of modern methods and software which is the sign of a bad coder (see #6 here: http://www.yacoset.com/Home/signs-that-you-re-a-bad-programmer). Isn’t abstraction the way by which we accomplish the most amazing things with technology? Isn’t it more wasteful to waste development time by re-inventing the wheel and forcing your peers to understand YOUR style rather than what’s most practical?
I inherited a system from such old-fashioned types of people and I can tell you I still haven’t unearthed all of their “gotchas” of absolute paths and i-dont-trust-this-new-language-so-im-going-to-be-clever types of garbage. The way they did things was to approach the problem as if they were the first person to ever tackle it or that at the very least, they knew better because they’ve been around longer. I swear these guys thought they were going to be buried with the server.
@Ovidiu
Well you have to start somewhere! For the most part *nix distributions have standardized the locations so that both /usr/bin/env and /bin/env exist.
@snke
Totally agree. I came here because I am faced with Perl code that starts “#! /usr/bin/perl”, but I have a requirement that means using a later release of Perl than that installed in the system area and in the environment I work in we are not allowed to change the “system” perl or add to its modules. So it should have been coded “#! /usr/bin/env perl”.
Thanks for the page you linked to.
I would also like to add that this technique has allowed my scripts to be portable to OSX where bash is still stuck at version 3. For example, I’ve installed mac ports and set my path for ‘bash’ to take precedence. But if I were to hard-code #!/bin/bash then that would do no good.
@Pete
‘which env’ on OSX 10.9 /usr/bin/env as the only result and appears to be the most portable between Cygwin, Linux, and OSX.
Funny thing is that according to `man env` “env – run a program in a modified environment”. So running `#!/usr/bin/env bash` instead of `#!/bin/bash` should have no effect as there are no environment variables being set or unset. I guess when `env` runs a command passed to it the PATH environment variable is used to locate the command but why there’s no information about this in the man page of `env` is a mystery for me.
Источник