Anyone know this? I've never been able to find an answer.
|
show 1 more comment
feedback
|
|
If you're prone to installing python in various and interesting places on your PATH (as in | |||||||||||||
feedback
|
|
From wikipedia "Shebangs specify absolute paths to system executables; this can cause problems on systems which have non-standard file system layouts" "Often, the program /usr/bin/env can be used to circumvent this limitation" | |||
|
feedback
|
|
It finds 'python' also in /usr/local/bin, ~/bin, /opt/bin, ... or wherever it may hide. | |||||||||
feedback
|
|
it finds the python executable in your environment and uses that. it's more portable because python may not always be in /usr/bin/python. env is always located in /usr/bin. | |||
|
feedback
|
|
You may find this post to be of interest: http://mail.python.org/pipermail/python-list/2008-May/661514.html This may be a better explanation: http://mail.python.org/pipermail/tutor/2007-June/054816.html | |||
|
feedback
|
man envwhat did you learn? – S.Lott Aug 30 '09 at 2:31