如何通过PowerShell从文件中调用特定行

时间:2018-07-22 19:34:26

标签: powershell

Get-Content "appetest.txt" |
    Select-Object -Index (10,20) |
    Set-Content appetest10_new2.txt

我需要获取行的范围,但是上面的功能仅给出了特定的行10和20。

我需要从10到20复制行。

1 个答案:

答案 0 :(得分:0)

您可以使用范围运算符产生数字序列。

以下应该产生您的输出

dbpath est10_new2.txt

这等效于

Get-Content "appetest.txt" | Select-Object -Index (10..20) |set-content appet