Created
October 13, 2020 13:35
-
-
Save r10r/79b84f19b74f8f435df660750b2d3bb4 to your computer and use it in GitHub Desktop.
Terminate background processes on SIGTERM
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
CLD="" | |
echo $$ | |
killchld() { | |
echo "killing $CLD" | |
kill -TERM $CLD | |
} | |
trap 'killchld' 15 | |
sleep 60 & | |
CLD="${CLD} $!" | |
sleep 120 & | |
CLD="${CLD} $!" | |
echo "waiting for $CLD" | |
wait $CLD |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment