如何在 ubuntu 12.04 中通过 contab 执行脚本?

如何在 ubuntu 12.04 中通过 contab 执行脚本?

我在 /bin/filename 中找到了脚本,我想在 contab 中检查它是否每 2 分钟运行一次。我的 contab 应该是什么样子?

# m h dom mon dow user  command
17 *    * * *   root    cd / && run-parts --report /etc/cron.hourly
25 6    * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6    * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6    1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
0 2 * * * * root /bin/filename
# 

可以吗?谢谢

答案1

编辑:误解的问题。 */2 每 2 分钟执行一次作业。然后使用下面的命令查看它是否正在运行

您可以执行以下操作:
cat /var/log/syslog | grep cron
仅查看系统日志中的 cron 条目。


或者打开 /etc/rsyslog.conf 并取消注释如下行,
cron.* /var/log/cron.log
这将在 /var/log 中创建一个文件,您可以使用 tail 进行监控:
tail -f /var/log/cron.log

答案2

*/2 *  * * *  root  /bin/filename

相关内容