Windows Powershell 命令访问 Zipfile

Windows Powershell 命令访问 Zipfile

Windows 中等效的命令是什么

zcat file.zip | wc -l

我想使用 Windows Powershell 命令了解 zip 文件中文件的行数。你能告诉我如何实现吗?

答案1

合并微软文档这篇博文这看起来像这样:

Expand-Archive -Path ./example.zip -DestinationPath ./tmp/ -PassThru | % { Get-Content $_ | Measure-Object -Line} 

虽然它提取了文件,但您可能想随后删除 ./tmp/ 文件夹。

相关内容