The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #5 (permalink)  
Old 02-04-2008
Yogesh Sawant's Avatar
Yogesh Sawant Yogesh Sawant is offline
Part Time Moderator and Full Time Dad
 

Join Date: Sep 2006
Location: Rossem, Tazenda
Posts: 767
showing lines that contain abc and 123 both (using Perl):
Code:
perl -nl -e 'print if (m/abc/  and  m/123/);' file
Reply With Quote