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
|
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 |
|||
|
|
Not as clean as I would like but does the trick:
If you have PSCX installed, you can use the Skip-Object cmdlet to make this a little nicer:
Note that the -Index parameter is 0 based which is why I used 4 instead of 5. |
|||
|
|