Help for this page

Select Code to Download


  1. or download this
    sub files_differ {
      system "cmp file1 file2";
     return $? >> 8;
    }
    
  2. or download this
    H:\>perl -e "system 'cmp file1 file2';print $?,' ',$? >> 8"
    'cmp' is not recognized as an internal or external command,
    operable program or batch file.
    256 1
    H:\>