Skip to content

Instantly share code, notes, and snippets.

@uurtech
Created December 5, 2019 18:13
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 uurtech/db491c071d4ead207683b44ed065b734 to your computer and use it in GitHub Desktop.
Save uurtech/db491c071d4ead207683b44ed065b734 to your computer and use it in GitHub Desktop.
run crontab file immediatly
crontab -l | grep -v '^#' | cut -f 6- -d ' ' | while read CMD; do eval $CMD; done
#thanks to Django Janny on Stackoverflow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment