Help for this page

Select Code to Download


  1. or download this
    # this does not work
    use strict;
    ...
       }
       $p->close();
    }
    
  2. or download this
    
    print "Enter an IP:  ";
    chomp (my $ip=<STDIN>);
    
  3. or download this
    my @IParray = qw(172.16.1.2 172.16.1.3);
    foreach my $ip (@IParray) {
    ...
        print "$ip pings\n";
      }
    }