Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    use Other::Library qw/ savemail /;
    ...
    
  2. or download this
    {
           $_ =~ m/([^:]*):(\S*)/;
    ...
           $password = $2;
           &checkdomain($username);
        }
    
  3. or download this
    open my $FH, '<', $mails or die "Nie moge otworzyc pierwszego pliku";
    while ( <$FH> ) {
    ...
      my ($username, $password) = split /:\s*/;
      checkdomain($username);
    }