⬅︎ Back to The importance of env (and how it works with virtualenv)
I see! Thanks!
$ head -1 test.py ; ./test.py & ps axc | grep test.py ; echo done #!/usr/bin/env python [1] 14079 done $ head -1 test.py ; ./test.py & ps axc | grep test.py ; echo done #!/usr/bin/python [1] 14086 14086 pts/12 R 0:00 test.py done
Comment
I see! Thanks!
Parent comment
$ head -1 test.py ; ./test.py & ps axc | grep test.py ; echo done #!/usr/bin/env python [1] 14079 done $ head -1 test.py ; ./test.py & ps axc | grep test.py ; echo done #!/usr/bin/python [1] 14086 14086 pts/12 R 0:00 test.py done