How do I implement ctrl+c handling in bash scripts so that the script is interrupted, as well as the currently running command launched by the script?
(Imagine there's a script that executes some long-running command. The user hits ctrl+c and interrupts the command, but the script proceeds.) I need it to behave in a way that they are both killed.