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
grep -n lines before and after airman_ole Shell Programming and Scripting 5 07-05-2009 10:57 PM
Grep and delete lines except the lines with strings vj8436 Shell Programming and Scripting 14 04-17-2009 11:25 AM
grep and fetching lines after grep arghya_owen Shell Programming and Scripting 2 07-16-2008 07:25 AM
Grep two lines at a time joshjimda Shell Programming and Scripting 6 03-26-2008 03:18 PM
grep + lines after Janus Shell Programming and Scripting 4 11-03-2006 05:56 PM

Reply
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 06-24-2009
Sepia Sepia is offline
Registered User
  
 

Join Date: Apr 2007
Location: England
Posts: 49
Question Grep for lines with X and Y

Is it possible to grep for lines in a file that have two strings?

I am grepping a tail -f of a file.

I want to display the full line or all lines with cat and dog in them

#tail -f log.log | grep cat and dog

Any ideas?

Thanks.
  #2 (permalink)  
Old 06-24-2009
chatwizrd chatwizrd is offline
Banned
  
 

Join Date: Nov 2008
Posts: 67
tail -f log.log | egrep -i 'cat|dog'
Bits Awarded / Charged to chatwizrd for this Post
Date User Comment Amount
06-24-2009 mr.applesauce N/A 50,000
  #3 (permalink)  
Old 06-24-2009
vidyadhar85's Avatar
vidyadhar85 vidyadhar85 is offline Forum Staff  
Moderator(The Tutor)
  
 

Join Date: Jun 2008
Location: INDIA
Posts: 1,382
awk will do.
Code:
tail -f filename|awk '/cat/&&/dog/{print}'
  #4 (permalink)  
Old 06-24-2009
jim mcnamara jim mcnamara is offline Forum Staff  
...@...
  
 

Join Date: Feb 2004
Location: NM
Posts: 5,643
if you can have cat ... dog and/or dog .. cat:
one way:
Code:
tail -f somefile | grep cat | grep dog
if cat always comes before dog
one way:
Code:
tail -f somefile | grep 'cat.*dog'
  #5 (permalink)  
Old 06-24-2009
Sepia Sepia is offline
Registered User
  
 

Join Date: Apr 2007
Location: England
Posts: 49
Quote:
Originally Posted by chatwizrd View Post
tail -f log.log | egrep -i 'cat|dog'
Are you sure that is not or rather than and? It is showing lines with just one string in.
  #6 (permalink)  
Old 06-24-2009
vidyadhar85's Avatar
vidyadhar85 vidyadhar85 is offline Forum Staff  
Moderator(The Tutor)
  
 

Join Date: Jun 2008
Location: INDIA
Posts: 1,382
Quote:
Originally Posted by chatwizrd View Post
tail -f log.log | egrep -i 'cat|dog'
that will search cat OR dog not cat AND dog
Sponsored Links
Reply

Bookmarks

Tags
grep

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 08:05 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language translation by Google.
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