Created
February 20, 2020 21:33
-
-
Save e0da/25b69756c0414d5f5ecbfbbfa9c078ca to your computer and use it in GitHub Desktop.
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
terminator=$(mktemp --dry-run /tmp/terminator.XXX) | |
echo "touch $terminator to stop" | |
( | |
while true; do | |
if [[ -f "$terminator" ]]; then | |
kill "$CHILD_PID" | |
echo "Killed $CHILD_PID because the main container terminatord." | |
exit | |
fi | |
sleep 1 | |
done | |
) & | |
trap "touch $terminator" EXIT | |
"$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment