In determining whether to use an absolute or or logical (/usr/bin/env) path to an interpreter interpreter in a she-bang shebang, there there are (2)two key considerations:
a) The interpreter can be found on targetthe target system
b) The correct version of the interpreter can can be found on targetthe target system
Since using a logical path- — /usr/bin/env to the interpreter in the she-bangshebang — is the most extensible solution allowing the same script to execute successfully on target hosts with different paths to the same interpreter, we'll test it- — using Python, due to its'its popularity- — to determine ifwhether it meets our criteria.
- Does
/usr/bin/envlive in a predictable, consistent location on POPULAR (not "every") Operating Systems? Yes:Does
/usr/bin/envlive in a predictable, consistent location on POPULAR (not "every") operating systems? Yes:- RHEL 7.5
- Ubuntu 18.04
- Raspbian 10 ("Buster")
- OSX 10.15.02
Below Python script executed both inside and outside of virtual envelopes (Pipenv used) during tests:
#!/usr/bin/env pythonX.x import sys print(sys.version) print('Hello, world!')The shebang in the script was varied by the Python version number desired (all installed on the same host):
#!/usr/bin/env python2#!/usr/bin/env python2.7#!/usr/bin/env python3#!/usr/bin/env python3.5#!/usr/bin/env python3.6#!/usr/bin/env python3.7
Expected results: that
print(sys.version)=env pythonX.x. Each time./test1.pywas executed using a different installed Python version, the correct version specified in the shebang was printed.Testing Notes:
- Tests were exclusively limited to Python
- Perl, like Python, MUST live in
/usr/binaccording to the FHS - I've not tested every possible combination on every possible number of Linuxy/Unixy Operating System and version of each Operating System.
- RHEL 7.5
- Ubuntu 18.04
- Raspbian 10 ("Buster")
- OSX 10.15.02
- Below Python script executed both inside and outside of virtual envelopes (Pipenv used) during tests:
#!/usr/bin/env pythonX.x import sys print(sys.version) print('Hello, world!') - The she-bang in the script was toggled by Python version number desired (all installed on same host):
#!/usr/bin/env python2#!/usr/bin/env python2.7#!/usr/bin/env python3#!/usr/bin/env python3.5#!/usr/bin/env python3.6#!/usr/bin/env python3.7
Expected results: that
print(sys.version)=env pythonX.x. Each time./test1.pywas executed using a different installed Python version, the correct version specified in the she-bang was printed.Testing Notes:
- Tests were exclusively limited to Python
- Perl: Like Python- MUST live in
/usr/binaccording to the FHS - I've not tested every possible combination on every possible number of Linuxy/Unixy Operating System and version of each Operating System.
Although it's TRUE that #!/usr/bin/env python will will use the first version of Python it matches in the the user's Path, we we can enforce an express preference by specifying a version number such such as #!/usr/bin/env pythonX pythonX.xx. Indeed Indeed, developers don't care which interpreter is found "first", all"; all they care about is that their code is executed using the specified interpreter they know to be compatible with their code to ensure to ensure consistent results- — wherever that may live in the filesystem...
In terms of portability/flexibility, using a logical- — /usr/bin/env -— rather than absolute path not only meets requirements a), b) & c) from my testing with different versions of Python, but also has the benefit of fuzzy-logic finding the same version interpreter even if they live at different paths on different Operating Systems. And although although MOST distros respect the FHS FHS, not all do all do.
So, where a script will FAIL if binarythe binary lives in differenta different absolute path than specified in the shebang, the the same script using a logical path SUCCEEDS as as it keeps going until it finds a match, thereby thereby offering greater reliability & extensibility across platforms.