Guest User

Untitled

a guest
Oct 23rd, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. term_handler() {
  4. echo "SIGTERM"
  5. }
  6.  
  7. trap "term_handler" SIGTERM
  8.  
  9. sleep 5 &
  10. PID=$!
  11.  
  12. wait $PID
  13.  
  14. echo "FINISHED"
Add Comment
Please, Sign In to add comment