add better fcron example
This commit is contained in:
parent
364580c67e
commit
572d0ff73e
1 changed files with 6 additions and 2 deletions
|
|
@ -10,6 +10,10 @@
|
|||
#!/bin/bash
|
||||
/usr/bin/petrified
|
||||
|
||||
## run user level every 30 minutes
|
||||
## (f)crontab -e (-u <username>)
|
||||
## run user level every 30 minutes using traditional cron
|
||||
## crontab -e (-u <username>)
|
||||
*/30 * * * * /usr/bin/petrified
|
||||
|
||||
## run user level every 30 minutes using fcron
|
||||
## fcrontab -e (-u <username>)
|
||||
%hourly,mail(no) 0 /usr/bin/petrified
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue