Help for this page

Select Code to Download


  1. or download this
    foreach (@vmstat) { # assigns to $_
             (undef,undef,undef,undef,$pos5,$pos6) = split; # splits $_ on
    + whitespace
             push @mylist, $pos5;
             push @mylist1, $pos6;
    }