I have two files where in I have listed my cronjobs:
cron.dev1.txt
cron.dev2.txt
Now I am using crontab
in the following manner:
crontab cron.dev1.txt
and
crontab cron.dev2.txt
When I do crontab -e
, I see that only the jobs listed in crontab cron.dev2.txt
are listed. It seems that first the jobs in crontab cron.dev1.txt
are loaded and then replaced by crontab cron.dev2.txt
.
Is there a way to load jobs using crontab listed in several different files.?