Skip to content

Instantly share code, notes, and snippets.

@r10r
Created October 13, 2020 13:35
Show Gist options
  • Save r10r/79b84f19b74f8f435df660750b2d3bb4 to your computer and use it in GitHub Desktop.
Save r10r/79b84f19b74f8f435df660750b2d3bb4 to your computer and use it in GitHub Desktop.
Terminate background processes on SIGTERM
#!/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