How to remove a particular line in a file?
Solved/Closed
Related:
- How to remove a particular line in a file?
- How to open a local file link on iphone - Guide
- How to open a ps file - Guide
- Windows 10 iso file download 64-bit - Download - Windows
- Sed remove line - Guide
- Dvi file - Guide
4 responses
Here is the documentation. https://www.gnu.org/software/sed/manual/sed.pdf
PLease forgive me, I have not used it, but it is close syntax to DOS. Your scope of the question is not direct, you will have to figure out what this model is, and apply your problem to this model. I am not gong to give you the exact code to make it work, as you have asked for a particular line, and the example has it in there.
This should be deleting line 2 and inserting --end--. Once again, not tested.
PLease forgive me, I have not used it, but it is close syntax to DOS. Your scope of the question is not direct, you will have to figure out what this model is, and apply your problem to this model. I am not gong to give you the exact code to make it work, as you have asked for a particular line, and the example has it in there.
$ sed '2d a\--end--' input.txt > output.txt
This should be deleting line 2 and inserting --end--. Once again, not tested.
Aug 24, 2018 at 07:07 AM