from http://redsymbol.net/articles/bash-exit-traps/

#!/bin/bash
function finish {
  # Your cleanup code here
}
trap finish EXIT

Reply via email to