I have an app that has some functionalities that are scheduled via crontab.
Is there any way for me to keep these crontab-launched commands in a git repository, and at the same time add them to the user's crontab?
My first thought was to add * * * * * crontab /home/user/git_repository/crontab
as a new line in crontab -e
, so that it always automatically sources it, but crontab -h
says that (default operation is replace, per 1003.2)
, while I just want my special crontab to be processed in addition to the user's crontab, so I'm not sure if that's the correct way to do this.