2015-04-15 61 views
2

我有一個問題是否有任何方法可以使用cppcheck-htmlreport從幾個xml生成一個html文件?CPPcheck html report

通常我這樣做:

/cppcheck-htmlreport --file /vobs/stn/dev/linux/cppcheck/xmlreport_v1.xml --title "xml1 test" --report-dir .

現在我想要做這樣的事情

/cppcheck-htmlreport --file /vobs/stn/dev/linux/cppcheck/*.xml --title "xml1 test" --report-dir .

但是,當我這樣做,表彰cppcheck只能轉換一個XML文件...

任何人都可以幫助我嗎?

對不起我的英語薄弱。

回答

0

你嘗試

cat *.xml >> newXmlFile.xml 

調用cppcheck-htmlreport過嗎? cat-command連接當前文件夾中所有xml文件的xml內容,並將結果存儲到newXmlFile.xml中。