我真的对cron的工作一无所知,但我正在努力让这个为我正在研究的经纪公司网站工作。任何帮助将不胜感激。 提前谢谢。
我已经获得了一个xml数据源,我正在尝试更新自己的xml。 我得到了以下xml.sh文件
cd `dirname $0`
echo `date` "Importing boats" >> /home/content/91/11071291/html/used-boats/import.log
curl -o /home/content/91/11071291/html/used-boats/horizon.xml "https://I-hid-this-address-incase-ishouldnt-share-on-stackoverflow.com?status=on" >> import.log
SUCCESS=$?
echo $SUCCESS
if [ $SUCCESS -ne 0 ]; then
echo "Data Download failed. Exiting"
exit $SUCCESS
fi
home/content/91/11071291/html/used-boats/import-local-xml.php >> /home/content/91/11071291/html/used-boats/import.log
运行cron作业时,我总是遇到这个错误:
/bin/sh: -c: line 0: unexpected EOF while looking for matching `"'
/bin/sh: -c: line 1: syntax error: unexpected end of file
答案 0 :(得分:0)
错误消息显示双引号字符("
)未匹配。
引号全部与您的问题所显示的内容相匹配,因此您要么错误地转录了某些内容,要么错误位于cron作业的定义中。使用crontab -e
编辑您的cron表,并仔细检查以确保所有引号都匹配。