如何在Windows计算机上仅使用Powershell从大型CSV文件(1GB +)中提取前100,000行?
答案 0 :(得分:1)
不确定为什么下面的答案在回答问题时被标记为无用。
-TotalCount<Int64>
Gets the specified number of lines from the beginning of a file or other item. The default is -1 (all lines).
You can use the "TotalCount" parameter name or its aliases, "First" or "Head".
可以通过
改进命令的性能Get-Content -TotalCount 100000 -ReadCount 0 filename.csv
答案 1 :(得分:0)
Get-Content -TotalCount 100000 filename.csv