Hi,
in the following line of a crontab file:
what does the "run-parts" mean here?Code:01 * * * * root run-parts /etc/cron.hourly
- KEV
Hi,
in the following line of a crontab file:
what does the "run-parts" mean here?Code:01 * * * * root run-parts /etc/cron.hourly
- KEV
It will run every script in that directory.
the point of the run-parts is to have a really simple place to drop system scripts that will run on a hourly, daily, weekly basis etc... just from the directory they are dropped in.