The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com



UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
I want to print next 3 lines after pattern matching. naree Shell Programming and Scripting 12 05-21-2009 03:04 AM
print certain pattern from 2 lines ali560045 Shell Programming and Scripting 2 10-15-2008 08:08 AM
Print the line within the search pattern manosubsulo Shell Programming and Scripting 3 10-15-2008 07:11 AM
awk how to print if the search pattern contains speace McLan Shell Programming and Scripting 1 04-09-2008 09:39 AM
Search file for pattern and grab some lines before pattern frustrated1 Shell Programming and Scripting 2 12-22-2005 03:41 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 11-20-2008
prsshini prsshini is offline
Registered User
  
 

Join Date: Nov 2008
Posts: 20
Print lines between the search pattern

hi,
I have a file say x.txt containing

xxx
123
bla
bla
...
you
xxx
dfk
dbf
...
me
xxx
...
...
keeps on..

i need to search for pattern in the line starting xxx in the file. If pattern matched, I need to fetch all the lines till i find next xxx.

Please help.
  #2 (permalink)  
Old 11-21-2008
Konerak Konerak is offline
Registered User
  
 

Join Date: Nov 2008
Posts: 20
sed -n '/xxx/,/xxx/p' <tst.txt

Will find from the first xxx to the second,
from the third to the fourth,
etc...
  #3 (permalink)  
Old 11-21-2008
prsshini prsshini is offline
Registered User
  
 

Join Date: Nov 2008
Posts: 20
Great!!

Awesome.. Works like exactly what i need.. Thanks a lot... Keep rocking!!!
  #4 (permalink)  
Old 11-24-2008
prsshini prsshini is offline
Registered User
  
 

Join Date: Nov 2008
Posts: 20
Hi, one more help pls... can u let me know to print the same lines but just before the line it finds xxx...
  #5 (permalink)  
Old 11-24-2008
Franklin52 Franklin52 is offline Forum Staff  
Moderator
  
 

Join Date: Feb 2007
Posts: 4,293
Assumimg you want the lines before the first xxx:

Code:
awk '/xxx/{exit}{print}' file
Regards
  #6 (permalink)  
Old 11-24-2008
prsshini prsshini is offline
Registered User
  
 

Join Date: Nov 2008
Posts: 20
its the otherway

Hi
I m sorry for not being clear.. Its like
I want line from XXX till the line before next xxx..
say if
xxx
1
2
3
4
xxx,
i want the lines from first xxx till line4.
Could you please help. Thanks a lot.
  #7 (permalink)  
Old 11-24-2008
Franklin52 Franklin52 is offline Forum Staff  
Moderator
  
 

Join Date: Feb 2007
Posts: 4,293
Quote:
Originally Posted by prsshini View Post
Hi
I m sorry for not being clear.. Its like
I want line from XXX till the line before next xxx..
say if
xxx
1
2
3
4
xxx,
i want the lines from first xxx till line4.
Could you please help. Thanks a lot.
Try this:

Code:
awk 'p && /xxx/{exit} /xxx/{p=1}p' file
Sponsored Links
Closed Thread

Bookmarks

Tags
sed syntax, unix commands

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 07:54 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0