Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In Powershell - Say I want to delete line 5 from a 10 line text file using the line number, how is this done?

Thanks, Daniel

share|improve this question
Is there any unique content on line 5 of these files that we can key off of? Are the number of lines in each file all the same? Which version of Powershell are you able to use? – Russell McClure Oct 18 '10 at 22:57

1 Answer

Not as clean as I would like but does the trick:

$content = Get-Content foo.txt
$content | Foreach {$n=1}{if ($n++ -ne 5) {$_}} > foo.txt

If you have PSCX installed, you can use the Skip-Object cmdlet to make this a little nicer:

$content = Get-Content foo.txt
$content | Skip -Index 4 > foo.txt

Note that the -Index parameter is 0 based which is why I used 4 instead of 5.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.