Help for this page

Select Code to Download


  1. or download this
    @lines = (`diff $args $file1 $file2`);
    for (@lines) {
      print;
    }
    
  2. or download this
    {
      local  $/ = '\0';
      $line = `diff $args $file1 $file2`;
      print $line;
    }