On Fri, 10 Dec 1999, Todd Dunbebin wrote:
> /etc/cron.hourly with:
> */15 * * * * /usr/bin/rdate -s bitsy.mit.edu
nope.
if you look at /etc/crontab, there are entries for
run-parts /etc/cron.daily
run-parts /etc/cron.hourly
etc...
run-parts is a program that goes through the folder (say, cron.daily) and
runs anything in it.
so if you put a file called script.sh in cron.daily, the contents being
#!/bin/bash
/usr/bin/rdate -s bitsy.mit.edu
and then set that to executable, every day, run-parts would execute that
script.
brian
--
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.