diff --git a/README.md b/README.md index 59f1c4b..51c6018 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,15 @@ # Cron An overview of using Ubuntu's built in Cron system. + +*** +### Edit Cron +```sh +sudo nano /etc/crontab ``` + +### Templates +```sh [minute] [hour] [day_of_month] [month] [day_of_week] [user] [command_to_run] * * * * * root /root/update.sh ```