从cron运行时存储变量值

时间:2017-08-18 14:40:25

标签: cron

SH

!/ bin / sh的

export count = $(sqlplus -s' username / passwd @ xyz'<

当我运行此脚本手册时,脚本运行正常。 当我将它保存在crontab条目中时如下

27 16 * * * /www/abc/a4.sh> a4.log

a4.log没有回应任何数据。

请告诉我们如何通过sql查询保存返回给变量的值

1 个答案:

答案 0 :(得分:0)

而不是放

&>> your_file.log

中的一行后面的

crontab -e

尝试使用

#!/bin/bash
exec &>> your_file.log

... 在BASH脚本的开头。 还可以使用>>它会附加到文件而不是覆盖它。