Update 'README.md'

This commit is contained in:
Sarimoko 2021-07-21 04:06:53 +00:00
parent 6e9a0aa8ce
commit 7e9a62eb05
1 changed files with 8 additions and 0 deletions

View File

@ -1,7 +1,15 @@
# Cron # Cron
An overview of using Ubuntu's built in Cron system. 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] [minute] [hour] [day_of_month] [month] [day_of_week] [user] [command_to_run]
* * * * * root /root/update.sh * * * * * root /root/update.sh
``` ```