I have a windows batch file, which iterates over files in a folder and runs a command on each file. Specifically I am running xmllint to validate some files:
for %%i in (c: emp*.xml) do (
C:XMLLINTxmllint -noout -schema "C:schemasschema.xsd" "%%~dpnxi" >> c:output.txt
)
它目前显示屏幕上的产出。 我想显示所有这些指挥部在产出档案中的产出。 我如何能够做到这一点? 通过使用配对操作员(>>)来,除创建空白档案外,没有完成任何工作。
这是否是因为食肉?