如何让 cron 守护进程检查来自多个文件的 cron 条目。在我的项目中,我需要经常更新 cron 文件,因此我计划将项目 cron 条目写入专用的 cron 文件,而不是操作现有文件。
答案1
用户有3种选择:
使用命令访问他们自己的 crontab 条目
crontab -e
。如果他们拥有
sudo
系统权限,他们可以将 crontab 文件添加到 /etc/cron.d 目录。将脚本添加到以下目录之一:
- /etc/cron.daily
- /etc/cron.每小时
- /etc/cron.monthly
- /etc/cron.weekly
答案2
您只能将您的应用程序的文件放在/etc/cron.d
.