在 Ubuntu 系统中,cron
是一个用于定时执行任务的守护进程
打开终端。
输入以下命令以编辑 crontab
文件:
crontab -e
这将打开当前用户的 crontab
文件。如果这是你第一次运行此命令,可能需要选择一个文本编辑器(例如 nano、vim 等)。
crontab
文件中,你将看到一些注释,说明了如何设置 cron 作业。Cron 作业的格式如下:* * * * * /path/to/command arg1 arg2
| | | | |
| | | | ----- Day of week (0 - 7) (Sunday = 0 or 7)
| | | ------- Month (1 - 12)
| | --------- Day of month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)
*/15
:*/15 * * * * /path/to/command arg1 arg2
crontab
文件。现在,你的 cron 作业将按照指定的频率运行。注意:如果你想要调整系统级别的 cron
调度频率(例如,对于 /etc/cron.daily
、/etc/cron.weekly
或 /etc/cron.monthly
中的脚本),则需要编辑相应的系统 crontab
文件。这通常位于 /etc/crontab
。但是,请谨慎操作,因为这可能会影响系统级别的服务和任务。在编辑之前,请确保了解所做更改的后果。