NAME
Proc::ProcessTableLight - Very simple variant of Proc::ProcessTable based on ps unix command
SYNOPSIS
use
strict;
my
$process_table
= process_table;
foreach
my
$process
(@{
$process_table
}){
Dumper(
$process
);
}
DESCRIPTION
This module provides access to list of process.
process_table
run ps axu unix command and parce it in array of hash`s and return it
SEE ALSO
AUTHOR
Bulichev Evgeniy, <bes@cpan.org>.
COPYRIGHT
Copyright (c) 2017 Bulichev Evgeniy. All rights reserved.
This module is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.