File Coverage

blib/lib/Acme/CPANModules/Parse/UnixCommands.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Acme::CPANModules::Parse::UnixCommands;
2              
3 1     1   312781 use strict;
  1         1  
  1         32  
4 1     1   3 use warnings;
  1         2  
  1         187  
5              
6             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
7             our $DATE = '2023-10-31'; # DATE
8             our $DIST = 'Acme-CPANModules-Parse-UnixCommands'; # DIST
9             our $VERSION = '0.004'; # VERSION
10              
11             our $LIST = {
12             summary => "List of modules that parse output of Unix commands",
13             entries => [
14             {module=>'Cisco::ShowIPRoute::Parser', summary=>'Parse Cisco "show ip route" command'},
15             {module=>'IPTables::Parse', summary=>'Parse iptables output'},
16             {module=>'Parse::IPCommand', summary=>'Parse linux "ip" command output'},
17             {module=>'Parse::Netstat::darwin', summary=>'Parse netstat output'},
18             {module=>'Parse::Netstat::freebsd', summary=>'Parse netstat output'},
19             {module=>'Parse::Netstat::linux', summary=>'Parse netstat output'},
20             {module=>'Parse::Netstat::solaris', summary=>'Parse netstat output'},
21             {module=>'Parse::Netstat', summary=>'Parse netstat output'},
22             {module=>'Parse::Netstat::win32', summary=>'Parse netstat output'},
23             {module=>'Parse::nm', summary=>'Parse nm output'},
24             {module=>'Proc::ProcessTable', summary=>'Parse "ps ax" output'},
25             ],
26             };
27              
28             1;
29             # ABSTRACT: List of modules that parse output of Unix commands
30              
31             __END__