How to remove a particular line in a file?

Solved/Closed
Akshata - Updated on Aug 23, 2018 at 02:49 PM
 Blocked Profile - Aug 26, 2018 at 07:06 PM
Hello,
How to remove particular line in a file and replace with --end-- pattern


4 responses

Blocked Profile
Aug 23, 2018 at 05:06 PM
Using what? In notepad, use the Find and replace.
0
Using sed shuf
0
Using sed
0
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.


$ sed '2d a\--end--' input.txt > output.txt



This should be deleting line 2 and inserting --end--. Once again, not tested.


0
Thank you
0
Blocked Profile
Aug 26, 2018 at 07:06 PM
I really hope that wasn't home work!
0