dserodio
4/24/2017 - 8:20 PM

Cleanup temp files on Bash scripts

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/