Created
March 27, 2015 10:42
-
-
Save cfree3/9712fb68bfe01a38da96 to your computer and use it in GitHub Desktop.
Saving the world, one crontab at a time
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function crontab() { | |
if [ "${1}" = "-r" ]; then | |
echo "I don't think you meant to do that." | |
return | |
fi | |
/usr/bin/crontab ${@} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment