Como remover várias linhas de um arquivo usando o Powershell?

1

Como remover várias linhas em um arquivo usando o Powershell? Eu estou tentando excluir um pedaço de linhas (linha 16 a linha 1463) de um arquivo (bloco de notas)

    
por Sam 15.02.2015 / 03:31

1 resposta

1

gc -head + gc -tail deve ser bom o suficiente. Por conveniência,

[System.Collections.ArrayList]$al = (gc yourfile)
$al.removeRange(15, 1463 - 16)
$al > yourfile
    
por 24.02.2015 / 12:31

Tags