The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Advanced & Expert Users
Google UNIX.COM



Thread: Compare files
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #26 (permalink)  
Old 03-14-2007
kharen11 kharen11 is offline
Registered User
 

Join Date: Mar 2007
Location: Manila
Posts: 25
Quote:

Change the following line
from
Code:
if( $first_arr[$j] =~ $second_arr[$i] ) {
to

Code:
if( $first_arr[$j] eq $second_arr[$i] ) {

Perfect!

That works wonders!!!! Thank you so much for the BIG help
Reply With Quote