Created
April 7, 2022 13:25
-
-
Save sric0880/e9edb0f7bedba092a8a74633306d26e8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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/bash | |
| declare -a bgpids | |
| cleanup() { | |
| for pid in ${bgpids[@]}; do | |
| echo kill $pid | |
| kill $pid | |
| done | |
| } | |
| trap "cleanup" SIGINT SIGTERM | |
| echo python start | |
| python test.py & bgpids+=("$!") | |
| for pid in ${bgpids[@]}; do | |
| echo wait $pid | |
| wait $pid | |
| done | |
| echo quit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment