Guest User

Untitled

a guest
Nov 20th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. function naosaionao {
  4. echo "Vou não, saio não, posso não ..."
  5. }
  6.  
  7. trap naosaionao SIGHUP
  8.  
  9. while [ true ]; do
  10. sleep 5
  11. done
  12.  
  13. exit 0
Add Comment
Please, Sign In to add comment