Help for this page

Select Code to Download


  1. or download this
    foreach $_(@TMP) {
                if ($_ =~ /^([\w.]+)$/) {
    ...
                    next;
                }
            }
    
  2. or download this
    foreach (@tmp) {
      push @hosts, $1 if /^([\w.]+)$/;
    }