NAME
Parse::nm - Run and parse 'nm' command output with filter callbacks
SYNOPSIS
TODO
use Parse::nm;
Parse::nm->run(options => [ qw(-e) ],
filters => [
{
name => qr/\.\w+/,
type => 'T',
action => sub {
print "$_[0]\n"
}
},
],
);
SEE ALSO
http://www.opengroup.org/onlinepubs/009695399/utilities/nm.html
AUTHOR
Olivier Mengué, dolmen@cpan.org
COPYRIGHT AND LICENSE
Copyright © 2010 Olivier Mengué.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.12.0 or, at your option, any later version of Perl 5 you may hava available.