Log In
source-git
/
bash
Clone
Source Code
GIT
Source
Pull Requests
0
Stats
Overview
Files
Commits
Branches
Forks
Releases
Files
Commit:
8443ab682a1f6f2becfbea3978f0c6bf49de3a16
8443ab682a1f6f2becfbea3978f0c6bf49de3a16
tests
misc
sigint-1.sh
Fork and Edit
Blob
Blame
History
Raw
echo before trap trap 'echo caught sigint' 2 echo after trap for i in 1 2 3 do echo $i sleep 5 done