from http://redsymbol.net/articles/bash-exit-traps/
#!/bin/bash function finish { # Your cleanup code here } trap finish EXIT
Undiscussed Horrific Abuse, One Victim of Many Fri, 06 May 2022 14:13:31 -0700
from http://redsymbol.net/articles/bash-exit-traps/
#!/bin/bash function finish { # Your cleanup code here } trap finish EXIT