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 ...
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
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
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
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
...
0
votes
1answer
72 views
shebang line not working
Don't know what's wrong with my shebang line:
vic@ubuntu:~/Desktop$ ./test.py
: No such file or directory
vic@ubuntu:~/Desktop$ ls -l
...
-rwxr-xr-x 1 vic vic 35 2011-11-06 15:46 test.py
...
0
votes
3answers
228 views
Shebang Notation: Python Scripts on Windows and Linux?
I have some small utility scripts written in Python that I want to be usable on both Windows and Linux. I want to avoid having to explicitly invoke the Python interpreter. Is there an easy way to ...
0
votes
3answers
720 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 ...