Help for this page

Select Code to Download


  1. or download this
    open DATA, "<", $myfile or die "Could not open $myfile:$!\n";
    
  2. or download this
    my @devices;
    
  3. or download this
    while (<DATA>) {
        chomp;
        next if !/^cgw01/;
        push @devices, $_;
    }