如何在 PowerShell 中计算文件中的总行数?


要在 PowerShell 中统计文件中的总行数,首先需要使用 Get-Content cmdlet 检索该项的内容,然后需要使用 Length() 方法检索总行数。示例如下。

示例

(Get-Content D:\Temp\PowerShellcommands.csv).Length

输出

PS C:\WINDOWS\system32> (Get-Content D:\Temp\PowerShellcommands.csv).Length
5727

更新时间: 03-11-2023

3.1 万+ 浏览量

开启您的 职业 生涯

完成课程获得认证

开始
广告