Help for this page

Select Code to Download


  1. or download this
    system("diff -q \"$File::Find::name\" \"$other_file\" > NU
    +L");
    if($?) {
        print "$file is different\n";
    }
    
  2. or download this
    if(qx/diff -q "$File::Find::name" "$other_file"/) {
        print "$file is different\n";
    }