I'm developing my application (on Linux) and sadly it sometimes hangs. I can use Ctrl+C
to send sigint, but my program is ignoring sigint because it's too far gone. So I have to do the process-killing-dance:
Ctrl+Z
$ ps aux | grep process_name
$ kill -9 pid
Is there a way to configure bash to send the kill signal to the current process when I press - say - Ctrl+Shift+C
?