Re: scripting crontab entries
From: Lowell Gilbert (freebsd-questions-local_at_be-well.ilk.org)
Date: 02/16/05
- Previous message: Lowell Gilbert: "Re: Resize a ufs partition"
- In reply to: Peter Risdon: "scripting crontab entries"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
To: Peter Risdon <peter@circlesquared.com> Date: 16 Feb 2005 08:55:18 -0500
Peter Risdon <peter@circlesquared.com> writes:
> I want to be able to update a user's crontab from a script. tabs
> in /var/cron/tabs carry a warning that the file should not be edited
> directly, so presumably something like
>
> #echo "5 * * * * /some/script.sh" >> /var/cron/tabs/$USER
>
> is the wrong approach. Is the right approach:
>
> #cat ~/.mycrontab
> 5 * * * * /some/script.sh
>
> #crontab ~/.mycrontab
>
> The right way to go? I notice this approach blows away existing crontab
> entries, and was hoping to be able to append new ones instead, but then
> by treating ~/.mycrontab as the master file, I can manage this OK.
How about:
crontab -u $USER -l > crontab.file.$USER
echo "5 * * * * /some/script.sh" >> crontab.file.$USER
crontab -u $USER crontab.file.$USER
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org"
- Previous message: Lowell Gilbert: "Re: Resize a ufs partition"
- In reply to: Peter Risdon: "scripting crontab entries"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|