我有一个cron设置每分钟运行
* * * * * /usr/PHP /my/location/script.PHP
现在,我使用time函数来测量脚本执行时间.所以,跑步@H_502_5@
console$time /usr/PHP /my/location/script.PHP
real 0m0.000s user 0m0.000s sys 0m0.000s
但它不适用于这样的cron:@H_502_5@
* * * * * time /usr/PHP /my/location/script.PHP 2>&1 >> my_log_file
它也不能在命令行上运行@H_502_5@
console$time /usr/PHP /my/location/script.PHP >> my_log_file
在上面的两个示例中,time函数实际上计算写入my_log_file所花费的时间,而不是将其输出写入日志文件.
在脚本中添加代码并记录STD OUTPUT不是一个选项.@H_502_5@