Skip to content

Instantly share code, notes, and snippets.

@CGamesPlay
Created May 12, 2022 07:23
Show Gist options
  • Save CGamesPlay/fa747772b3b478af17492d25d27c4959 to your computer and use it in GitHub Desktop.
Save CGamesPlay/fa747772b3b478af17492d25d27c4959 to your computer and use it in GitHub Desktop.
Robo abandons children
all:
./test.sh
test:
command: ./test.sh
#!/bin/bash
quit() {
echo "Shutting down"
sleep 1
echo "Done"
exit 0
}
trap quit SIGINT
while true; do
sleep 10
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment