$ */1 * * * * xterm -display :0 -hold -e 'which xterm'
会同时弹出两个 xterm窗口,为什么?
$ */1 * * * * xterm -display :0 -hold -e '/home/name/bin/scriptaaa '
运作良好
$ */1 * * * * xterm -display :0 -hold -e 'scriptaaa'
command not found
,为什么?
$ which xterm
的/ usr /斌/ xterm的
答案 0 :(得分:1)
$PATH
。通常crontab不会继承用户的环境,因此$HOME/bin
不在$PATH