Cleanup temp files on Bash scripts
#!/bin/bash function cleanup() { # Your cleanup code here } trap cleanup EXIT # See http://redsymbol.net/articles/bash-exit-traps/