Article:
 |
|
A Security Primer for Mac OS X
|
| Subject: |
|
crontab running from 1pm to 2pm |
| Date: |
|
2004-02-21 07:16:31 |
| From: |
|
brooksch
|
|
|
|
The crontab entry:
* 13 * * * root /usr/local/vscanx/vscanx...
will run a crontab entry from 13:00 until 13:59 as the wild card '*' will work for every minute. You probably want:
0 13 * * * root /usr/local/vscanx/vscanx...
to run the command exactly at 13:00 and no other time - otherwise you'll have a really slow machine once you get back from lunch!
|
Showing messages 1 through 1 of 1.
Thank you very much for pointing this unfortunate typo out !
I have sent it up !
F.J.