Cron 不工作但在终端手动运行

Cron 不工作但在终端手动运行

我在名为 app.sh 的脚本文件中放置了一条命令,该命令只是执行一个应用程序。

sh app.sh 

当我直接用终端运行它时,它工作正常!但是当把它放在 cron 下时,它就不起作用了。我厌倦了三种实际上相同的命令但不同的方法(参见下面的命令)。它也不起作用。脚本出了什么问题?有人看到了什么吗?

/opt/extras.ubuntu.com/pushbullet-indicator/bin/pushbullet-indicator

gnome-terminal -x sh -c "/opt/extras.ubuntu.com/pushbullet-indicator/bin/pushbullet-indicator"

exec /opt/extras.ubuntu.com/pushbullet-indicator/bin/pushbullet-indicator

在 crontab -e 下

*/1 * * * * sh /home/app.sh

相关内容