Created
November 15, 2014 06:28
-
-
Save craigbeck/6bbca42a42947d877fad to your computer and use it in GitHub Desktop.
signals in bash
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
#!/bin/sh -e | |
function do_exit() { | |
echo | |
echo "exiting..." | |
exit 0 | |
} | |
trap do_exit INT | |
sleep 5 | |
echo "done sleeping" | |
exit 3 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment