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 ...
22
votes
8answers
5k views
Why do people write #!/usr/bin/env python on the first line of a Python script?
It seems to me like the files run the same without that line.
6
votes
4answers
164 views
When scripting, what's the difference between #!/usr/bin/perl and #!/usr/bin/env perl?
Obviously this applies equally with python, bash, sh, etc substituted for perl!
Quentin's answer below was clearly correct, and so I've accepted it, but I guess what I actually meant was 'what are ...
6
votes
3answers
741 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
217 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' ...
3
votes
3answers
176 views
should i put #! (shebang) in python scripts
should i put the shebang in my python scripts -- and if yes -- what form?
#!/usr/bin/env python
or
#!/usr/local/bin/python
i know the first one is "more portable" -- but i want to know what ...
2
votes
2answers
95 views
Linux shell strange situation
Does anyone know why the following script works?
#a-random-junk-string
echo HI
The shell executes the echo command, and outputs HI. I thought that since there is no "!" after the "#", the shell ...
1
vote
2answers
45 views
Shell script change shell in between
I've a shell script with two shebangs, the first one tells #!/bin/sh and after a few lines the other one is #!/usr/bin/env python.
When this script is given executable permission and ran as ...
1
vote
2answers
99 views
Multiline shebang in OCaml?
In short, I'd like to abstract this shebang so I can literally copy and paste it into other .ML files without having to specify the filename each time:
#!/usr/bin/env ocamlscript -o hello
...
1
vote
2answers
202 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
2answers
186 views
Shebang and Groovy
Is it possible to declare at the start of a file that it should be executed as a Groovy script?
Examples for other scripting languages:
#!/bin/sh
#!/usr/bin/python
#!/usr/bin/perl
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 ...
1
vote
2answers
157 views
How to add she bang at the beginning of all .sh files?
I want to edit she bang line #!/bin/bash line on the top of files in all the files with .sh extension how it done by scripting.
1
vote
3answers
254 views
How to address an issue while sourcing an env file in bash?
Some issue arise when sourcing one of your env file (a series of variable exporting)
for instance:
...
export MY_ROOT=/Soft/dev/blah/blah
export MY_BIN=${MY_ROOT}/bin
...
results in
$. my_env.sh
...