all good to release 0.0.0

This commit is contained in:
Zane C. B-H 2019-02-20 06:00:14 -06:00
parent 2a93394a93
commit 06d7442b8b
3 changed files with 21 additions and 11 deletions

View File

@ -1,5 +1,6 @@
Revision history for Parse-Netstat-Search Revision history for Parse-Netstat-Search
0.01 Date/time 0.0.0 2019-02-20/06:00
First version, released on an unsuspecting world. -Initial release.

View File

@ -1,15 +1,17 @@
Parse-Netstat-Search Parse-Netstat-Search
The README is used to introduce the module and provide instructions on Searches the connection list in the results returned by Parse::Netstat
how to install the module, any machine dependencies it may have (for
example C compilers and installed libraries) and any other information
that should be provided before the module is installed.
A README file is required for CPAN modules since CPAN extracts the README use Parse::Netstat::Search;
file from a module distribution so that people browsing the archive use Parse::Netstat qw(parse_netstat);
can use it to get an idea of the module's uses. It is usually a good idea
to provide version information here so that people can decide whether my $res = parse_netstat(output => join("", `netstat -anp`), flavor=>'linux');
fixes for the module are worth downloading.
my $search = Parse::Netstat::Search->new();
$search->set_cidrs( [ '10.0.0.0/24', '192.168.0.0/16' ] );
my @found=$search->search($res);
INSTALLATION INSTALLATION
@ -42,6 +44,9 @@ You can also look for information at:
Search CPAN Search CPAN
https://metacpan.org/release/Parse-Netstat-Search https://metacpan.org/release/Parse-Netstat-Search
Code Repo
http://gitea.eesdp.org/vvelox/Parse-Netstat-Search
LICENSE AND COPYRIGHT LICENSE AND COPYRIGHT

View File

@ -609,6 +609,10 @@ L<https://cpanratings.perl.org/d/Parse-Netstat-Search>
L<https://metacpan.org/release/Parse-Netstat-Search> L<https://metacpan.org/release/Parse-Netstat-Search>
=item * Code Repo
L<http://gitea.eesdp.org/vvelox/Parse-Netstat-Search>
=back =back