在Linux中,crontab(Cron Table)是用于设置周期性被执行的任务的工具
打开终端。
输入以下命令以编辑当前用户的crontab文件:
crontab -e
* * * * * /path/to/script.sh
0 5 * * 1 /path/to/another-script.sh
#
,后跟优先级值。优先级值越低,任务执行得越早。例如,将第一个任务的优先级更改为高:* * * * * /path/to/script.sh # 1
0 5 * * 1 /path/to/another-script.sh
将第二个任务的优先级更改为低:
* * * * * /path/to/script.sh
0 5 * * 1 # 9 /path/to/another-script.sh
请注意,这种方法仅适用于在同一用户下的任务。如果你想要调整系统范围内任务的优先级,你可能需要查看系统日志或使用其他工具,如nice
和renice
命令。