Help for this page

Select Code to Download


  1. or download this
    my @temp;
    for my $h (@hosts) {
    ...
        }
    }
    @hosts = @temp;
    
  2. or download this
    my @temp;
    for my $h (@hosts) {
    ...
        }
    }
    @hosts = @temp;
    
  3. or download this
    @hosts = map {
        if (/^\d{2}\z/) {
    ...
            $_
        }
    } @hosts