RosettaCodeData/Task/Remove-lines-from-a-file/PowerShell/remove-lines-from-a-file.ps1
2026-04-30 12:34:36 -04:00

11 lines
228 B
PowerShell

function del-line($file, $start, $end) {
$i = 0
$start--
$end--
(Get-Content $file) | where{
($i -lt $start -or $i -gt $end)
$i++
} > $file
(Get-Content $file)
}
del-line "foobar.txt" 1 2