Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我看到一堆关于 cron 命令的教程,比如
0 */5 * * * /some_sript.sh
但是我将这行文本放在什么文件中?
您只需要运行“crontab”命令来编辑 cron 表。尝试“man crontab”。
来自标签:crontab 信息
基本命令 crontab -e编辑 crontab。 crontab -l显示 crontab 当前信息。
crontab -e
crontab -l
另外,你最好写
0 */5 * * * /bin/sh /some_sript.sh
代替
也就是说,指示执行脚本的二进制文件。