Tagged Questions

25
votes
4answers
626 views

How does the #! work?

In a script you must include a #! on the first line followed by the path to the program that will execute the script (e.g.: sh, perl). As far as I know though, the # character denotes the start of a ...
11
votes
7answers
339 views

Is there a standard way to make sure a python script will be interpreted by python2 and not python3?

Is there a standard way to make sure a python script will be interpreted by python2 and not python3? On my distro, I can use #!/usr/bin/env python2 as the shebang, but it seems not all distros ship ...
7
votes
6answers
2k views

Python source header comment

What is the line #!/usr/bin/env python in the first line of a python script used for?
6
votes
3answers
745 views

how to use multiple arguments with a shebang (i.e. #!)?

I'd like to execute an gawk script with --re-interval using a shebang. The "naive" approach of #!/usr/bin/gawk --re-interval -f ... awk script goes here does not work, since gawk is called with ...
5
votes
5answers
220 views

What does the line “#!/bin/sh” mean in a UNIX shell script?

I was going through some shell script tutorials and found the following sample program: #!/bin/sh clear echo "HELLO WORLD" Can anyone please tell what is the significance of mentioning '!/bin/sh' ...
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 ...
2
votes
1answer
199 views

Portable shebang line

#!/usr/bin/perl This is the shebang line to a lot of scripts I'm writing lately. Hard coding the path of the binary seems like it could create some problems. For instance, if one of my users has ...
1
vote
2answers
203 views

Use shebang/hashbang in Windows Command Prompt

I'm currently using the serve script to serve up directories with Node.js on Windows 7. It works well in the MSYS shell or using sh, as I've put node.exe and the serve script in my ~/bin (which is on ...
1
vote
6answers
110 views

How do I find where Python is located on Unix?

I'm working on a new server for a new workplace, and I'm trying to reuse a CGI script I wrote in Python earlier this year. My CGI script starts off with #!/local/usr/bin/python But when I run this ...
0
votes
5answers
144 views

Can I do without the shebang line in my Unix Perl scripts?

Can I write a Perl program where my first line is not #!/path/? Thank you.