设置终端命令以在Crontab中运行

时间:2016-09-16 05:46:35

标签: node.js linux cron crontab

我正在尝试设置每天午夜12点运行的CRON作业。以下代码运行任务

node command.js sample

我正在使用crontab。请看下面的一行

00 00 * * * node command.js sample

我应该编写.sh文件还是有一种简单的方法来运行它。想得到一些专家意见

1 个答案:

答案 0 :(得分:0)

可能存在一些问题,因为cron作业不会调用.bash_profile或.bash_rc。如果您有任何环境变量,则不会初始化

尝试类似的东西, 00 00 * * * source /home/username/.bash_profile;

参考此链接: https://unix.stackexchange.com/questions/67940/cron-ignores-variables-defined-in-bashrc-and-bash-profile