Tagged Questions

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 ...
2
votes
1answer
99 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 #! ...
0
votes
3answers
730 views

shebang #! does not work in ubuntu linux when created in Windows 7

Shows the output of 3 files all which have the same "textual" contents. Only the one created in Linux functions correctly. -rwxr-xr-x 1 chris chris 52 2011-04-04 07:21 lin_orig.php -rwxr-xr-x 1 ...