in reply to Perl script using cron
You'll have to make sure that your script has the right permissions to run through the cron.
Then simply add the following to crontab to make it run every day at 10 AM
* 10 * * * /path/to/your/script.pl
You might want your cron to suppress output, which make the line above as follows:
* 10 * * * /path/to/your/script.pl > /dev/null 2>&1
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl script using cron
by Appy16 (Sexton) on Mar 17, 2010 at 05:12 UTC |