Skip to content

Instantly share code, notes, and snippets.

@pcpsant
Created July 2, 2012 14:13
Show Gist options
  • Save pcpsant/3033444 to your computer and use it in GitHub Desktop.
Save pcpsant/3033444 to your computer and use it in GitHub Desktop.
Exemplo com trap
#!/bin/bash
function naosaionao {
echo "Vou não, saio não, posso não ..."
}
trap naosaionao SIGHUP
while [ true ]; do
sleep 5
done
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment