The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

plsub - List subroutines defined in a Perl script (or module)

VERSION

This document describes version 0.02 of plsub (from Perl distribution App-PlUtils), released on 2014-09-17.

SYNOPSIS

 % plsub Some/script.pl
 % plsub --module Some::Module

Sample output:

 % plsub --module Org::Element::Table
 +--------------+
 | BUILD        |
 | rows         |
 | row_count    |
 | column_count |
 | as_aoa       |
 +--------------+

 % plsub -m Org/Element/Table --detail
 +------+--------------+
 | line | name         |
 | 13   | BUILD        |
 | 55   | rows         |
 | 65   | row_count    |
 | 75   | column_count |
 | 96   | as_aoa       |
 +------+--------------+

To active bash completion:

 % complete -C plsub plsub; # can be put in bash startup file e.g. .bashrc
 % plsub -m MIME/<tab>
 % plsub -m "MIME::B<tab> ; # use quote (' or ") if you want to use :: as separator

HOMEPAGE

Please visit the project's homepage at https://metacpan.org/release/App-PlUtils.

SOURCE

Source repository is at https://github.com/perlancar/perl-App-PlUtils.

BUGS

Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=App-PlUtils

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

AUTHOR

perlancar <perlancar@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by perlancar@cpan.org.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.