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 > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Extracting a line in a text file terryporter51 Shell Programming and Scripting 5 10-13-2008 06:34 PM
Adding specific text and spaces to each line in a text file hertingm Shell Programming and Scripting 4 08-25-2008 02:34 PM
search and replace a specific text in text file? santosham UNIX for Dummies Questions & Answers 4 06-25-2008 05:53 PM
extracting a set of strings from a text file Deanne Shell Programming and Scripting 2 09-20-2007 11:31 PM
Is extracting specific files from a zip file possible? HLee1981 UNIX for Dummies Questions & Answers 1 10-14-2005 11:06 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 10-21-2008
rahulkav rahulkav is offline
Registered User
  
 

Join Date: Aug 2008
Location: Reading, UK
Posts: 11
Extracting specific text from a file

Dear All,

I have to extract a a few lines from a log file and I know the starting String and end string(WHich is same ). Is there any simplere way using sed - awk.

e.g. from the following file
--------------------------------------
Some text
Date: 21 Oct 2008
Text to be extracted
Somemore text to be extracted
Date: 21 Oct 2008
Some more text

so I would like to extract the following lines
-------------
Text to be extracted
Somemore text to be extracted
---------------

I know the string "Date: 21 Oct 2008"


One way I can think of is do a grep -n "Date: 21 Oct 2008" filename and then user head and tail.

But I wanted to know is there any simplere way?

Regards,
Rahul
  #2 (permalink)  
Old 10-21-2008
ph0enix ph0enix is offline
Registered User
  
 

Join Date: Oct 2008
Posts: 26
grep might help:
Code:
cat filename.txt |grep "string_in_the_file"
J.
  #3 (permalink)  
Old 10-21-2008
rahulkav rahulkav is offline
Registered User
  
 

Join Date: Aug 2008
Location: Reading, UK
Posts: 11
simple grep will not help because I know the starting pattern and end pattern and I need all the text between these two patterns.
  #4 (permalink)  
Old 10-21-2008
Christoph Spohr Christoph Spohr is offline
Registered User
  
 

Join Date: Sep 2008
Posts: 205
Hi,

try:

sed -n '/^start/,/^end/{/^start\|^end/!{p}}' testfile

where testfile is your file to search and start and end are the strings delimiting your pattern. This command will search every piece of text between a line starting with start and a line starting with end, inside this pattern it will print every line which doesn't start with "start" or "end".

HTH

Chris
  #5 (permalink)  
Old 10-21-2008
freelong freelong is offline
Registered User
  
 

Join Date: Apr 2008
Posts: 38
try this one:
Code:
awk 'f==0 && /Date: 21/ {f=0; getline; f=1}
       f==1 && /Date: 21/ {f=0}f' inputfilename
  #6 (permalink)  
Old 10-21-2008
rubin's Avatar
rubin rubin is offline Forum Advisor  
Registered User
  
 

Join Date: Nov 2007
Posts: 321
One more,

Code:
awk '/Date: 21/{c=!c;next}c' file
  #7 (permalink)  
Old 10-21-2008
summer_cherry summer_cherry is offline Forum Advisor  
Registered User
  
 

Join Date: Jun 2007
Location: Beijing China
Posts: 1,078
Code:
sed -n '/Date/,/Date/p' filename | sed '/Date/d'
Sponsored Links
Closed Thread

Bookmarks

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 03:02 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