Skip to content

Instantly share code, notes, and snippets.

@martinbutt
Created November 12, 2022 21:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martinbutt/4cb8f0cb1e65abbf1a67ffd9677629e5 to your computer and use it in GitHub Desktop.
Save martinbutt/4cb8f0cb1e65abbf1a67ffd9677629e5 to your computer and use it in GitHub Desktop.
Crontab to allow output, but only email it if the script fails
* * * * * script.sh &> tmp_file || (echo Script failed with exit code $?; cat tmp_file); rm -f tmp_file > /dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment