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 -->
  #2 (permalink)  
Old 06-05-2008
incredible incredible is offline Forum Advisor  
Registered User
  
 

Join Date: May 2008
Location: s'pore
Posts: 2,120
a=`wc -c filename1 | nawk '{print $1}` b=`wc -c filename2 | nawk '{print $1}'`
if [[ $a -eq $b ]]; then
echo "File sizes match."
else
echo "File sizes differ! "