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 ps file - Guide
- How to open a local file link on iphone - Guide
- Sed remove line - Guide
- How to remove searchbaron - Guide
- What is a crdownload 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.
24 Aug 2018 à 07:07