0
votes
3answers
44 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
…
6
votes
8answers
264 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 …
0
votes
3answers
462 views
For ruby/webrick, I need windows to recognize shebang (#!) notation.
(Bear with me, I promise this gets to shebang and windows.)
I have about the simplest of WEBRick servers put together:
require 'webrick'
include WEBrick
s = HTTPServer.new(:Port=>2000, …
7
votes
4answers
684 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 …
3
votes
3answers
698 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 …
