Delete specific Range of lines Using sed , awk, grep etc.
Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Delete specific Range of lines Using sed , awk, grep etc.
hi,
My issue is that I want to delete a range of lines from a txt file Using shell scripting.For example in a file containing 100 lines, I want to delete only specific lines in the range of 11 to 29 .I can use any command for this purpose in shell script. Somebody please suggest a solution
The command to be used was
sed '2,10d' a.org > b.txt
this would delete line ranging from 2 to 10 including them.
It looks so easy. but it came after a lot of research
The command to be used was
sed '2,10d' a.org > b.txt
this would delete line ranging from 2 to 10 including them.
It looks so easy. but it came after a lot of research
Congratulations!! Homework or not, you are on the path to total success. Look also at addressing by content---not just line number.
eg:
sed '/text/,/F1/d oldfile > newfile
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.