2
votes
How to make ssh to kill remote process when I interrupt ssh itself?
Do you know what the options you're passing to ssh do? I'm guessing not. The -n option redirects input from /dev/null, so the process you're running on the remote host probably isn't seeing SIGINT …
0
votes
remove whitespace from bash variable
flolo's answer is documented in the "Parameter Substitution" section of the bash man page. Another source of documentation is the …
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 …
