Update 'README.md'
This commit is contained in:
parent
6e9a0aa8ce
commit
7e9a62eb05
|
@ -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
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue