Help for this page

Select Code to Download


  1. or download this
    while (<DUPLICATE>) {
      print DUPremoved if not $lines{$_}++;
    }
    
  2. or download this
    while (<DUPLICATE>) {
      chomp;
      print DUPremoved "$_\n" if not $lines{$_}++;
    }