Help for this page

Select Code to Download


  1. or download this
    $command_line = "cmp -l /media/hda3/2967test/"$data[$i]" /media/hda3/2
    +967test/"$data[$j]"| wc -l";
    
  2. or download this
    my $path = "/media/hda3/2967test";
    $command_line = "cmp -l $path/$data[$i] $path/$data[$j] | wc -l";
    
  3. or download this
    $diff_count = system $command_line;
    
  4. or download this
    #!/usr/bin/perl
    
    ...
            }
        }
    }