Help for this page

Select Code to Download


  1. or download this
    my %new_pass;
    while (<F1>) {
    ...
      my @f = split(':', $_);
      $new_pass{$f[0]} = $f[2];
    }
    
  2. or download this
    while (<F2>) {
      chomp;
    ...
      }
      print F3 join(':', @f), "\n";
    }