The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #4 (permalink)  
Old 08-31-2008
Franklin52 Franklin52 is offline Forum Staff  
Moderator
  
 

Join Date: Feb 2007
Posts: 4,346
Use egrep, search for $var1 OR $var2:


Code:
egrep "[$var1]|[$var2]" file

Invert match:


Code:
egrep -v "[$var1]|[$var2]" file

Search for $var1 AND $var2:


Code:
egrep "$var1.*$var2|$var2.*$var1" file

Invert match:


Code:
egrep -v "$var1.*$var2|$var2.*$var1" file

Regards

Last edited by Franklin52; 08-31-2008 at 07:29 AM.. Reason: Adding invert match