Skip to content

Instantly share code, notes, and snippets.

@mutsune
Created December 20, 2018 12:12
Show Gist options
  • Save mutsune/2dd551e18e20817e05117cf5b753535d to your computer and use it in GitHub Desktop.
Save mutsune/2dd551e18e20817e05117cf5b753535d to your computer and use it in GitHub Desktop.
trap '
pids="$(jobs -p)"
if [[ "${pids}" != "" ]]; then
echo "terminated procs are below:"
ps auxww ${pids}
kill ${pids} > /dev/null
fi' EXIT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment