0

私はcronジョブについて本当に何も知りませんが、私が取り組んでいる証券会社のWebサイトでこれを機能させようとしています. どんな助けでも大歓迎です。前もって感謝します。

自分の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
4

1 に答える 1

0

エラー メッセージには、二重引用符 ( ") が一致しなかったことが示されています。

引用符はすべてあなたの質問が示すものと一致するため、何かを間違って転記したか、エラーが cron ジョブの定義内にあります。を使用crontab -eして cron テーブルを編集し、すべての引用符が一致していることを再確認してください。

于 2013-07-18T02:17:50.883 に答える