Help for this page

Select Code to Download


  1. or download this
    while (<$fh>) {
       chomp;
    ...
       warn("bad hosts line: $_"),next if !defined $ip;
       $hosts{$host} = $ip;
    }
    
  2. or download this
    %hosts = map {
       if (/^(\w+)\s(.+)/) {
    ...
          (warn "bad hosts line: $_")[1..0];
       }
    } <FILE>;