有没有像Cron API这样的东西?
我的意思是说,有没有加入/删除Cron工作的程序化方式,而不必踏入Cron的脚趾?
解决方法
UNIX cron的API是文件系统.有一个用于安装/编辑用户crontab的crontab命令. crontab命令的主要原因是对用户实施安全限制(例如/etc/cron.allow和/etc/cron.deny).
系统cron标签只是放置在/etc/cron.d(和cron.daily / weekly / monthly)中的文件.不需要特别的照顾;只需将文件放在适当位置.引用/ etc / crontab的顶部:
# /etc/crontab: system-wide crontab # Unlike any other crontab you don't have to run the `crontab' # command to install the new version when you edit this file # and files in /etc/cron.d. These files also have username fields,# that none of the other crontabs do.
格式与crontab(5)中记录的用户crontabs相同,但在命令之前具有用户字段. SPACE意味着空格(一个或多个),0和7都是星期天:
minute SPACE hour SPACE day-of-month SPACES month SPACE day-of-week SPACE user SPACE command
使用正常的POSIX文件访问不会跨越cron的脚趾.记住,rename将始终将目标名称指向旧文件或新文件,从不为空.所以你可以将文件写入一个新的名称,然后将其重命名在你的旧名称之上.
许多编程语言都有API来帮助编写crontab.例如,CPAN (Perl) has several.