Tagged Questions
10
votes
4answers
2k views
Python deployment and /usr/bin/env portability
At the beginning of all my executable Python scripts I put the shebang line:
#!/usr/bin/env python
I'm running these scripts on a system where env python yields a Python 2.2 environment. My scripts ...
4
votes
2answers
3k views
/usr/bin/env questions regarding shebang line pecularities
Questions:
What does the kernel do if you stick a shell-script into the shebang line?
How does the Kernel know which interpreter to launch?
Explanation:
I recently wanted to write a wrapper ...