我有下面的脚本 (/support/memexsvr_count) 用于编号。当前用户登录应用程序。
当我手动运行时,输出与通过 crontab 运行时不同。谁能尽快给我建议。
crontab
#Count
* * * * * /support/memexsvr_count.sh
脚本
x=`(date)`
y=`(ps -ef|grep memexsvr|wc -l)`
z=`expr $y - 3`
echo "Number of memexsvr processes at $x is $z" >> /support/memexsvr_count.log
手动运行:输出
Number of memexsvr processes at Tuesday, 10 September 2013 14:30:26 BST is 0
定时任务:输出
Number of memexsvr processes at Tue Sep 10 14:59:00 BST 2013 is 3