Help for this page

Select Code to Download


  1. or download this
    while (<PINGALLIP>) {
       if (/is alive/) {
    ...
                    print ALIVEIP $_;
            }
    }
    
  2. or download this
    while (<PINGALLIP>) {
       if ($_ =~ /is alive/) {
                    chomp;
                    print ALIVEIP $_;
            }
    }