Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
crontab -l > /tmp/crontab.saved #backup the crontab
touch /tmp/empty.file #create an empty file
crontab -l /tmp/empty.file #delete all entries by replacing them with the 'contents' of empty.file
#cron is now running but has no entries so it won't do anything
crontab /tmp/crontab.saved #reload the saved cronjobs