脚本没有输出在crontab下运行

时间:2017-07-07 08:58:53

标签: perl cron

我想每两分钟执行一次Perl脚本。

此脚本向我发送包含文件的电子邮件。手动工作正常。

我在crontab中试过

*/2 * * * * /sw/freetools/perl/5.8.8/Linux/rh6/x86_64/bin/perl /home/httpldev/iLicoMetrics/metrique.pl &> /dev/null

我也试过

*/2 * * * * /home/httpldev/iLicoMetrics/metrique.pl &> /dev/null

但我没有输出。

1 个答案:

答案 0 :(得分:3)

我发现自己的错误,我在Perl的道路上犯了一个错误: /sw/freetools/perl/5.8.8/Linux/rh6/x86_64/bin/perl

/sw/freetools/perl/5.8.8/Linux/rh60/x86_64/bin/perl

感谢您的帮助。