我有一个压缩文件,其中包含多个压缩文件(不同服务器的日志)。我必须提取每个压缩文件中都存在的名为“diagnostics.xml”的文件(只有一个副本)。
我正在使用以下命令。尝试了多次但不确定出于什么原因,它不起作用。你能给我一些建议吗?
7z e "C:\users\Logs\test.zip" -oC:\users\Logs -ir!diagnostics.xml
**Folder Structure:**
test.zip(contains the below zipped files)
=> Server1_Logs.zip(contains the diagnostics.xml)
=> Server2_Logs.zip(contains the diagnostics.xml)
=> Server3_Logs.zip(contains the diagnostics.xml)
请注意,我们只需要提取一个diagnostics.xml(来自任何服务器)。