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

learn more… | top users | synonyms

0
votes
1answer
18 views

Why does Rails runner shebang not work on Debian but work on OS X?

I have a Rails script that I run on both OS X Lion and Debian GNU/Linux 7.0 (wheezy). It's down to a simple script: #!/usr/bin/env /opt/thermyos.com/server/script/rails runner ENV.each do |k, v| ...
1
vote
1answer
15 views

Shebang line in script on NFS mount on Linux client doesn't seem to work [closed]

Here is our test script... #!/bin/bash echo "Hello World" It is on an NFS share that is mounted on a Linux client. If we call the script like this: ./testscript.sh then we get this: sh: ...
0
votes
3answers
79 views

Using gcc to compile a C program

I am following an example from CUNY and I have never done anything with C before so I probably don't know what I am doing. Consider the program below. Do I need a shebang line for C code written in ...
1
vote
2answers
46 views

Python shebang problems with importing modules (and choosing the correct interpreter)

I've googled and searched stack overflow for solutions, but I can't seem to find any way to fix this. Basically, this is my problem: I'm trying to use the Image/PIL Python module, which comes ...
0
votes
0answers
25 views

How to put Hashbang / Shebang to all my link

I just want to know how to use #! or what they called Hash Bang / She Bang. Like in Twitter. What I want is when I click a link on my page ( #!/example.php ) and it will load to my DIV Content, but ...
3
votes
2answers
82 views

Why does using /usr/bin/env break my Python import?

Python 2.7.3 on OSX 10.8.2 I'm currently writing a script that imports the markdown module. I used the #!/usr/bin/env python shebang for portability. The script runs fine when I run it directly in ...
0
votes
1answer
148 views

How do I use #! instead of just # in Durandal URLs?

By default, URLs created using Durandal's router is formatted as such: http://example.com/#/whiskey-tango-foxtrot However, I'd like to use #! for SEO purposes, so that the URL looks like this: ...
0
votes
2answers
97 views

What's a shebang line for Scala that doesn't corrupt mimetype?

I've been using this, but it changes the mimetype to text/x-shellscript, which makes editors like Emacs treat my code like Shell scripts. #!/bin/sh exec scala "$0" "$@" !#
0
votes
0answers
85 views

How to write a Python interpreter for script that can use a shebang to load the interpreter

I have simple script interpreter written in Python that processes a script written in a text file. I can refer to the interpreter using a shebang at the top of the script so that I can then execute ...
0
votes
3answers
80 views

How can I dynamically select the interpreter in the shebang line?

I am trying to write a script which is called from the shebang line and returns the right interpreter based on a condition (in my case, based on OS version) and I can't understand why it doesn't work. ...
1
vote
2answers
51 views

Compiling coffee binaries

If I'm writing my entire project in CoffeeScript, how do I write my "binary" files? #!/usr/bin/env coffee # My program sits here Then, once compiled, I loose the shebang: // Generated by ...
0
votes
1answer
206 views

Reliable way to find out which ruby to use in shebang

I wrote a script todo.rb, whose first line is #!/usr/bin/env ruby. However, running this script gives the following error: λ ~/ ruby todo/todo.rb ...
1
vote
2answers
192 views

Sublime Text 2 build command ignores the shebang

The Sublime text 2.0.1 (Mac OSX) build command ignores the shebang line a the top of my python file. The shebang line has the full path to my python 3.2 installation : #!/usr/local/bin/python3 ...
3
votes
4answers
251 views

#!/usr/bin/python and #!/usr/bin/env python, which support?

How should the shebang for a Python script look like? Some people support #!/usr/bin/env python because it can find the Python interpreter intelligently. Others support #!/usr/bin/python, because now ...
2
votes
1answer
130 views

Run shell script from Objective-C

I'm trying to run a shell script that is in an NSTextView. I know I can use NSTask to do this, but I was wondering what the best way would be, if the script only exists in memory (the text view) but ...
0
votes
0answers
32 views

Twitter overcomes shebang

A while ago twitter overcame the old-fashioned sheban (#!) and is now using html5's function pushState. How did they manage to get this working in non-html5 browser, like internet explorer 8 or 9? I ...
3
votes
1answer
110 views

Which shebang should I use for F# scripts in Mac OS X?

I have F# 2.0 installed with Mono, and I'd like to ./ my F# scripts. Which shebang line should I use for Mac OS X? Can this shebang line be generalized for Mac OS X and Linux?
2
votes
2answers
153 views

Expanding a relative path to a full path when running a C program in shell

I have a problem when my script needs to communicate with a C executable. I cannot get the script's full path, which I need to load and send to another process. The script's name is myScript ...
5
votes
4answers
542 views

Why should the shebang line always be the first line?

I have simple perl script as below: #!/usr/bin/perl use strict; use warnings; print "hello ! world\n"; i can execute this script as below: >temp.pl hello ! world > if i add some comments ...
1
vote
1answer
98 views

tcsh on Windows: hashbang file support

I'm using pre-build binary exe of tcsh on Windows. I'm trying to write some clojure script. like this: #!/usr/bin/env java clojure.main (prn "Hello World!\n") first I try to direct run it in ...
1
vote
3answers
146 views

Python shebang and newlines

To make a Python script executable on Linux and bash, one uses the shebang #! /usr/bin/env python as the first line of the script. If this line happens to end with the Windows-style newline \r\n ...
-1
votes
2answers
160 views

Strange script behaviour when shebang references different shell

I've recently switched to the ksh93 shell. I did this by adding the following two lines to my .profile file export SHELL=/usr/local/bin/ksh93 exec $SHELL Since I did that some simple scripts have ...
11
votes
1answer
271 views

Conditional shebang line for different versions of Python

I have a problem when trying to run a python script on two different computers. On each computer I would like to run the script using python version 2.7.3 however the problem I am having is that the ...
2
votes
3answers
199 views

Shell script shebang for unknown path

Is it possible to specify a shebang line without knowing the path of the program you want to do the executing? maybe don't specify the path #!node or specify several options #!/usr/local/bin/node ...
2
votes
0answers
89 views

Bitnami PHP won't evaluate from shebang

I'm trying to run a PHP script from the command line. When I use Bitnami's php interpreter to run it, it works OK. For example, I have the script test_php, and its contents are ...
2
votes
1answer
164 views

Should you use a hashbang on AJAX content sites, or just use normal URLs?

So I am creating just a fairly normal content based website that is going to load new pages/content in via AJAX for a smoother user experience and some simple transitions. I see a ton of people using ...
6
votes
1answer
75 views

Naming for Python installations in Unix and good use of the shebang

I am confused about the standard way to write the shebang for a Python script. I have a plain "python" link which depending on the system it could be either Python 2.x or Python 3.x and that is a ...
0
votes
3answers
79 views

Identical shebang not working

So I'm trying to create some scripts that I want to run without manually specifying the interpreter each time I run it. #!/usr/bin/python Above is the shebang on an existing script that runs like I ...
3
votes
2answers
279 views

When/why to use --env-shebang with ruby gems?

Ikenna Okpala recommended this .gemrc (I modified it slightly): --- :verbose: true :bulk_threshold: 1000 install: --no-ri --no-rdoc --env-shebang :sources: - http://gems.rubyforge.org/ :benchmark: ...
0
votes
2answers
158 views

Why does directly run script not work but “python script_name.py” does

I wrote a script to scraping data from a site. It works when I run it with "python script.py" but when chmod +x and run directly from shell, it not work properly (not overwrite the output file) here ...
3
votes
3answers
340 views

Dealing with multiple python versions when python files have to use #!/bin/env python

I have this problem: System A runs Ubuntu and needs Python 2.6 for a bunch of different things. I Installed Python 2.7 separately on System A System B has Python 2.7 natively. I have a python ...
1
vote
4answers
273 views

What is the significance of -T or -w in #!/usr/bin/perl?

I googled about #!/usr/bin/perl, but I could not find any satisfactory answer. I know it’s a pretty basic thing, but still, could explain me what is the significance of #!/usr/bin/perl in Perl? ...
1
vote
1answer
434 views

How to make an executable phar?

I want to start a phar script as an executable, directly by doing foo.phar <params> instead of php foo.phar <params>.
2
votes
2answers
74 views

Perl 5.6 script requires (calls) a Perl 5.10 script

I have a script foo.pl whose sheebang line points to Perl 5.6 binary. foo.pl "require"s another script bar.pl that has sheebang line having Perl 5.10. Has anyone ever come across such situation? Any ...
2
votes
2answers
214 views

Is it possible to use a shebang but somehow “conceal” it from a JavaScript interpreter?

I guess my question is pretty hard to decipher (feel free to perfect it). But it pertains to the use of shebang lines in scripts – specifically, in this case, JavaScripts. Let's say I have this ...
0
votes
2answers
108 views

Handling an AJAX response as a document?

I'm trying to implement AJAX with shebang - meaning that example.com/#!/somepage.php is simply example.com/somepage.php loaded into the content area of an AJAX site. The obvious way of doing this is ...
2
votes
3answers
302 views

Shebang line limit in bash and linux kernel

I'm trying to execute python scripts automatically generated by zc.buildout so I don't have control over them. My problem is that the shebang line (#!) is too long for either bash (80 character ...
0
votes
2answers
249 views

PHP shebang inappropriate?

I was going to add a shebang line to a php script #!/bin/env php but I was looking around and people don't seem to be doing this. http://github.com/zurb/foundation/blob/master/marketing/about.php ...
3
votes
1answer
578 views

How to make javascript support shebang(#!)?

Some scripting languages(such as python, bash) use # as comment. #!/usr/bin/env python print 'hello, world' I can run the script: python script.py Or ./script.py Is it possible to make ...
6
votes
3answers
2k views

Preferred bash shebang?

#!/usr/bin/env bash #!/bin/bash #!/bin/sh #!/bin/sh - etc... Is there any one objectively better than the others for most uses? I vaguely recall a long time ago hearing that adding a dash to the ...
1
vote
1answer
233 views

Executing binary files with a shebang

I created a simple program that takes the path of a directory as an input, creates an archive of that directory (converting it into a single file), adds a shebang to that file (so that the contents of ...
0
votes
2answers
248 views

How to set .htaccess to allow shebang in url

A project I am working on is using pushState, but since Internet Explorer can't handle it correctly shebang is used in the changing of the URL. Is there away to set .htaccess to allow the shebang in ...
9
votes
1answer
678 views

How does argparse (and the deprecated optparse) respond to 'tab' keypress after python program name, in bash?

I have tested optcomplete working with the optparse module. Its example is a simple file so I could get that working. I also tested it using the argparse module as the prior one is deprecated. But I ...
0
votes
2answers
174 views

Is there a way to alias a location in Cygwin for a shebang?

I have some scripts that I often use in both windows(cygwin) and linux, I'd like to make the scripts executable in both environments. Is there a way to alias the location of my python installation, ...
1
vote
1answer
909 views

Combine hash and non-hash URLs in Backbone.js

Is there some way how to combine hash and non-hash URLs in Backbone.js application? I set Backbone.history.start({pushState: true}). When user click on some link, I fetch JSON data from server, ...
0
votes
2answers
107 views

Shebang conflict with doxygen

Does doxygen doesn't work properly on python script with a shebang? I tried one python script with shebang to my company's tool directory and ran doxygen. It was not able to display namespace ...
2
votes
3answers
144 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 ...
3
votes
2answers
153 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
73 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, ...
0
votes
4answers
411 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.

1 2 3