我有一个问题是有什么方法可以使用cppcheck-htmlreport从少量xml生成一个html文件?
通常我这样做:
/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 :(得分:0)
你试过吗
cat *.xml >> newXmlFile.xml
在调用cppcheck-htmlreport之前? cat-command连接当前文件夹中所有xml文件的xml内容,并将结果存储到newXmlFile.xml中。