Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. SIGTERM=15
  4. SIGINT=2
  5. SIGTSTP=18
  6. trap 'echo "help Im being killed"' 0 15
  7. c=1
  8. while [ $c -le 10000 ]
  9. do
  10. echo "hi there c is not $c"
  11. let c=$c+1
  12. done
  13.  
  14. [akali@localhost ~]$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement