0
下面的代碼行工作在我的數據庫服務器(UNIX)xmllint沒有shell腳本
xmllint --noout CI_PRD_TESTING.XML
內工作,但同樣沒有shell腳本
#!/bin/bash
export FOO="/home/data/others"
echo $FOO
vari=`ls -t1 CI_PRD*.XML | head -1`
xmllint --noout $vari
它給我的內部工作以下錯誤。爲什麼會表現這樣的...
[[email protected] others]$ bash validate_xml.sh
/home/data/others
"arning: failed to load external entity "CI_PRD_TESTING.XML
[[email protected] others]$
看看錯誤消息是如何環繞的?您的腳本中有DOS行尾。刪除它們。請參閱['bash'標記信息wiki](https://stackoverflow.com/tags/bash/info)中的第1項。 –
@EtanReisner我已經從腳本中刪除了CD,仍然輸出相同。 – Mrk
你做了什麼?什麼「光盤」? –