View Single Post

   
  #11 (permalink)  
Old 04-17-2008, 05:05 PM
Andreas F. Borchert
 
Posts: n/a
Default Re: Adding line in crontab from command line...

On 2008-04-10, Helmut Kreft <kreft@unfug.org> wrote:
> crontab -l | (cat;echo "00 1 * * * /monitor_file_system") | crontab


Yup but the cat process can be avoided:

(crontab -l; echo "00 1 * * * /monitor_file_system") | crontab

Andreas.
Reply With Quote