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 -->
  #6 (permalink)  
Old 10-08-2008
treesloth treesloth is offline
Registered User
  
 

Join Date: Oct 2008
Location: Orem, Utah
Posts: 73
The diff command seems ideal for this. In particular:


Code:
diff -y file1 file2

This will give a side-by-side comparison. The man page lists more options than I've ever dreamed of using, but -y seems to answer your needs.