如何在 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
广告