我从cron收到这些错误消息(当我检查邮件时)
/usr/Mytest/Log_Deleter.sh[3]: ./Log_Deleter.prop: not found.
在我的剧本中我有......
#!/bin/ksh
. ./Log_Deleter.prop
我的脚本和属性文件位于/ usr / Mytest
我不确定为什么cron不能识别这个文件。当我从文件夹执行时,它工作正常,但我不明白为什么它会导致错误。
提前致谢!
答案 0 :(得分:2)
你必须这样做:
#!/bin/ksh
cd /usr/Mytest
. ./Log_Deleter.prop
或者给出完整的路径:
. /usr/Mytest/Log_Deleter.prop