linux Schedule System Updates

Viewing All Cron jobs Using the command below, one can view all existing Cron jobs. The command display jobs for the current user you are logged in as, which in this example is root. crontab -l To view other user Cron jobs, use the command crontab -u USERNAME -l while ensuring to change the “USERNAME” part with … Read more

Useful cron jobs

Over the years, I’ve written or collected various cron jobs that others might find useful. I prefer one line crons, which don’t require an external script, sometimes this means really really long commands pipped together, but I think you can easily place them within a shell script if you prefer. The idea is, that these … Read more