Help for this page

Select Code to Download


  1. or download this
    map $_ // '[undef]'
    
  2. or download this
    map defined($_) ? $_ : '[undef]'
    
  3. or download this
    for my $nic (networkInfo()) {
        print "Device: $nic->{device} has IP Address $nic->{ip}\n" .
    ...
        print "Device: $nic->{device} also IPv6 address $nic->{ip6}\n"
            if defined($nic->{device});
    }