1
vote
How to bind a key to sigkill in bash?
My question to you would be: why is your application not handling SIGINT? Have you defined a handler for SIGINT to set a flag so that any loops can check the flag and break if it's set, or are you …
8
votes
Can a shell script set environment variables of the calling shell?
Your shell process has a copy of the parent's environment and no access the parent process's environment whatsoever. When your shell process terminates any changes you've made to its environment ar …
1
vote
Why can’t my apache process write to my world-writeable file?
I know that a previous post touched on this, but I think it bears repeating: When discussing a problem of this nature it's helpful to include the relevant code and the output of the exception. If a …
1
vote
How do I do webtesting in Perl for pages that require JavaScript?
You might be able to make use of JavaScript::SpiderMonkey.
…
