Convenience signal handler for exitable errors
This pattern is so typical it deserves a convenience decorator:
try:
<some code>
except Exception as e:
sys.exit(f"{ovc._program}: {e}")
Maybe we wouldn't even have to pass the program name along, we can grab it out of sys...
Edited by Juergen Nickelsen