Help for this page

Select Code to Download


  1. or download this
    my $outr = `ps -ef|grep Jones`;
    @outr = split(/\n/, $outr);
    foreach (@outr)
    ...
          print "$_\n";
       }
    }