Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
        print "Owner: $email_owners{$_}\n";
        print "E-mail: $_\n";
    }
    
  2. or download this
    for(0 .. $#owners) {
        print "Owner: $owners[$_]\n";
        print "E-mail: $addys[$_]\n";
    }