Tagged Questions

The #! marker at the beginning of scripts is called a shebang.

learn more… | top users | synonyms

322
votes
4answers
42k views

What's the shebang/hashbang (#!) in Facebook and new Twitter URLs for?

I've just noticed that the long, convoluted Facebook URLs that we're used to now look like this: http://www.facebook.com/example.profile#!/pages/Another-Page/123456789012345 As far as I can recall, ...
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.
14
votes
3answers
1k views

Are there any javascript libraries for working with hashbang/shebang (#!) urls?

With all the negative press over Twitter and Gawker's use of hashbang urls I'm having a very hard time finding any examples/libraries for how to actually use them. I'd like to use hashbang urls in 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 ...
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 ...
8
votes
5answers
2k views

What should I use for a Perl script's shebang line?

Which of these is better or faster to use as the shebang line for a Perl script? #! perl #! perl.exe #! fullpath/perl(/perl.exe) #! partialpath/perl(/perl.exe) And, when using #!perl, when it ...
7
votes
9answers
828 views

What does #!/usr/bin/… at the start of a file mean?

I can do something like this in Haskell: #!/usr/bin/runghc main=putStrLn "Hello World" Then I can run it with ./hello.hs My question is, why is the first line ignored? Comments in haskell start ...
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
4answers
166 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
125 views

How to check syntax of ruby script that has script/runner as a shebang?

I have problems to check syntax of ruby scripts that has rails script/runner on its shebang. Here are two example scripts and how they responses to ruby syntax checking: Script hello_world_runner.rb: ...
6
votes
2answers
162 views

What good is -CSDA specified only on the shebang line?

I am looking for someone to authoritatively confirm or correct what I think I know about the -CSDA option on the shebang line of a Perl script. See perldoc perlrun for the documentation of -CSDA. ...
6
votes
2answers
235 views

lisp as a shebang script vs lisp running in SLIME

I just started with common-lisp, having come from C++ and Python. I'm trying to run a simple SDL program that does nothing other than show an image on-screen. I can get it working from within SLIME. ...
6
votes
3answers
748 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 ...
6
votes
4answers
692 views

how to make a python or perl script portable to both linux and windows?

I was wondering how to make a python script portable to both linux and windows? One problem I see is shebang. How to write the shebang so that the script can be run on both windows and linux? Are ...
6
votes
2answers
427 views

How do I set the taint mode in a perl script with a '#!/usr/bin/env perl'- shebang?

how do I set the taint mode in a perl script with a #!/usr/bin/env perl shebang?
6
votes
5answers
1k views

How do I ignore the Perl shebang on Windows with Apache 2?

I have set up a local Perl web environment on my Windows machine. The application I'm working on is originally from a Linux server, and so the shebang for source .pl files look like so: ...
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' ...
5
votes
6answers
200 views

What does the symbol “#!” mean in Python?

What does this line of code mean? Without it, my python3 http server can't understand and let the browser download an empty .py file (depend on the link to the .py file) #! /usr/local/bin/python3
4
votes
1answer
157 views

What's the difference between these two python shebangs

I used to use the shebang #!/usr/bin/env python When is it better to use #!/usr/bin/python What is the exact difference between them? Thanks.
4
votes
1answer
148 views

Git: how to deal with different shebang

How do people deal with different shebangs between local and remote? For example, my local python is /usr/bin/python, whereas my web host is a purpose-built python at ~/local/bin/python. A lead ...
4
votes
2answers
187 views

Mono framework shebang linux

I have a c# source file. Is there any way to put something like #!/usr/bin/env mono, so it will be compiled and then run as executable: For python for example, i'll do like this: #!/usr/bin/env ...
4
votes
5answers
819 views

Cannot pass an argument to python with “#!/usr/bin/env python”

I needed to have a directly executable python script, so i started the file with #!/usr/bin/env python. However, I also need unbuffered output, so i tried #!/usr/bin/env python -u, but that fails with ...
4
votes
1answer
359 views

Shebang line parsing problems in Ubuntu

What is the accepted, portable way to include interpreter options in the shebang line, ie. how can I do something like #!/usr/bin/env python -c or (more importantly) something like ...
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 ...
3
votes
2answers
73 views

What are the differences between the ways of specifying character encoding?

I have seen several ways of specifying the string encoding as follows: # -*- coding: utf-8 -*- # coding: utf-8 # encoding: utf-8 #!/usr/bin/env ruby -Ku #!/usr/bin/env ruby -Eutf-8 ...
3
votes
1answer
39 views

Ruby regex works with ruby command but not shebang

I have the following 2 regular expressions in a ruby file. They run fine when i use the ruby command but if i try to run via ./apachereport.rb it generates an error. regex: urls = parse(@file, ...
3
votes
1answer
73 views

Makefile as an executable script with shebang?

Is it possible to create an executable script that would be interpreted by make? I tried this: #!/usr/bin/env make --makefile=/dev/stdin main: @echo Hello! but it does not work - hangs ...
3
votes
3answers
178 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 ...
3
votes
2answers
289 views

Executing python scripts with subprocess.call using shebang

I'm writing a (somewhat) modular application in Python 3 and I'd like to run arbitrary programs from it, said program being specified at runtime and not necessarily a python script. So I use for ...
3
votes
2answers
486 views

When using Ajax History and Bookmark, is it always good to use “#!” instead of just “#”?

Facebook is doing Ajax History (Back and Forward button) and Bookmark using #! instead of just # in the URL. Is it always a good idea to do that, because I was thinking that a usual anchor could ...
3
votes
3answers
193 views

is there a hack for fully functional cross-platform shebang line?

Problem: apparently the scripts in the .git/hooks directory depend on the filename matching one of: post-commit pre-commit pre-rebase etc ... No concept of "file extension" is required because the ...
2
votes
1answer
97 views

Is there a command line interpreter for Free Pascal?

E.g., one I could use by adding a shebang to my Pascal files: #!/usr/bin/env fpi
2
votes
1answer
98 views

#! /usr/bin/env and process names: portability at a price?

There are lots of good reasons to use #! /usr/bin/env. Bottom line: It makes your code more portable. Well, sorta. Check this out.... I have two nearly identical scripts, bintest.py #! ...
2
votes
1answer
461 views

Should I use hashbang/shebang?

I read here that the idea of the shebang (#!) was so Google knows that an alternative conventional URL exists providing the same page "state" So, if I don't have conventional URLs ...
2
votes
1answer
153 views

Multiline shebangs in Clojure?

Goal: produce a Clojure script which runs -main when run as ./script.clj. The closest I've gotten is #!/bin/bash #(comment exec clj -m `basename $0 .clj` ${1+"$@"} exit #) (defn -main [args] ...
2
votes
1answer
119 views

Shebang for psql

Hello I'm trying to write Postgresql script(s) but having a problem with shebang line #! /usr/bin/psql [ psql_args_here ] -f select now(); This gives me error as if I just entered psql without any ...
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 ...
2
votes
2answers
665 views

shebang line not working in R script

I have the following script #!/usr/bin/Rscript print ("shebang works") in a file called shebang.r. When I run it from command line using Rscript it works $ Rscript shebang.r but when I run it ...
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 ...
2
votes
2answers
520 views

Read the first line of batch file from the same batch file?

I have a batch file that tries to run the program specified in its first line. Similar to Unix's shebang: C:\> more foo.bat #!C:\Python27\python.exe %PYTHON% foo-script.py C:\> What I want to ...
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
97 views

Shebangs in scalac code

The scala interpreter allows shebangs, but strangely, scalac borks on them. Are there any tricks like these to get around this flaw?
1
vote
2answers
120 views

What's the appropriate Go shebang line?

I like using shebangs to run my Perl scripts directly: #!/usr/bin/env perl What's the shebang for Go programs?
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
0answers
159 views

Avoiding extra page loads when using #! AJAX navigation

I'm writing a web site which is basically a succession of sequential pages. The unqualified URL points to the last page, and qualified URLs point to specific pages. So we have: http://site.com/ -> ...
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
4answers
187 views

How to start python programs with appropriate python version?

Given a set of python programs: /tool/a.py /tool/b.py /tool/c.py /tool/d.py ... that are stored in a shared network directory, executed in a mixed environment (Solaris and different flavors of ...
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
1answer
248 views

Windows/cygwin shebang line

I am using Sphinx quite often. There is one index that calls a stored procedure with one param as input. The param can be any number from 1 to 10 and each returs different results. Since it would make ...

1 2