Help for this page

Select Code to Download


  1. or download this
    while (<DATA>) {
            chomp;
            push @ips, (split)[0];
            push @names, (split)[1];
    }
    
  2. or download this
    my %ips_names;
    while (<DATA>) {
           $ips_names{(split)[0]} = (split)[1];
    }