Result:
found more than 468 distributions - search limited to the first 2001 files matching your query ( run in 1.990 )


Acme-CPANModules-Parse-UnixCommands

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/Parse/UnixCommands.pm  view on Meta::CPAN

our $DATE = '2023-10-31'; # DATE
our $DIST = 'Acme-CPANModules-Parse-UnixCommands'; # DIST
our $VERSION = '0.004'; # VERSION

our $LIST = {
    summary => "List of modules that parse output of Unix commands",
    entries => [
        {module=>'Cisco::ShowIPRoute::Parser', summary=>'Parse Cisco "show ip route" command'},
        {module=>'IPTables::Parse', summary=>'Parse iptables output'},
        {module=>'Parse::IPCommand', summary=>'Parse linux "ip" command output'},
        {module=>'Parse::Netstat::darwin', summary=>'Parse netstat output'},
        {module=>'Parse::Netstat::freebsd', summary=>'Parse netstat output'},
        {module=>'Parse::Netstat::linux', summary=>'Parse netstat output'},
        {module=>'Parse::Netstat::solaris', summary=>'Parse netstat output'},
        {module=>'Parse::Netstat', summary=>'Parse netstat output'},

lib/Acme/CPANModules/Parse/UnixCommands.pm  view on Meta::CPAN

        {module=>'Proc::ProcessTable', summary=>'Parse "ps ax" output'},
    ],
};

1;
# ABSTRACT: List of modules that parse output of Unix commands

__END__

=pod

=encoding UTF-8

=head1 NAME

Acme::CPANModules::Parse::UnixCommands - List of modules that parse output of Unix commands

=head1 VERSION

This document describes version 0.004 of Acme::CPANModules::Parse::UnixCommands (from Perl distribution Acme-CPANModules-Parse-UnixCommands), released on 2023-10-31.

lib/Acme/CPANModules/Parse/UnixCommands.pm  view on Meta::CPAN


=over

=item L<Cisco::ShowIPRoute::Parser>

Parse Cisco "show ip route" command.

Author: L<MARKPF|https://metacpan.org/author/MARKPF>

=item L<IPTables::Parse>

lib/Acme/CPANModules/Parse/UnixCommands.pm  view on Meta::CPAN


Author: L<MRASH|https://metacpan.org/author/MRASH>

=item L<Parse::IPCommand>

Parse linux "ip" command output.

Author: L<PERLANCAR|https://metacpan.org/author/PERLANCAR>

=item L<Parse::Netstat::darwin>

lib/Acme/CPANModules/Parse/UnixCommands.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::Parse::UnixCommands -E'say $_->{module} for @{ $Acme::CPANModules::Parse::UnixCommands::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-Parse-UnixConfigs

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/Parse/UnixConfigs.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::Parse::UnixConfigs -E'say $_->{module} for @{ $Acme::CPANModules::Parse::UnixConfigs::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-Parse-UnixShellCommandLine

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/Parse/UnixShellCommandLine.pm  view on Meta::CPAN

our $DATE = '2023-10-31'; # DATE
our $DIST = 'Acme-CPANModules-Parse-UnixShellCommandLine'; # DIST
our $VERSION = '0.003'; # VERSION

our $LIST = {
    summary => "List of modules that parse command-line like Unix shells",
    description => <<'_',

Sometimes you need to parse a Unix shell command-line string, e.g. when you want
to break it into "words".

In general I recommend <pm:Text::ParseWords> as it is a core module. If you want
a little more speed, try <pm:Parse::CommandLine::Regexp> (see reference to
benchmark in See Also).

lib/Acme/CPANModules/Parse/UnixShellCommandLine.pm  view on Meta::CPAN

    entries => [
        {
            module=>'Complete::Bash',
            description => <<'_',

Its `parse_cmdline()` function can break a command-line string into words. This
function is geared for tab completion, so by default it also breaks on some
other word-breaking characters like "=", "@", and so on. Probably not what you
want generally, unless you are working with tab completion.

_

lib/Acme/CPANModules/Parse/UnixShellCommandLine.pm  view on Meta::CPAN

            module=>'Text::ParseWords',
            description => <<'_',

This core module can split string into words with customizable quoting character
and support for escaping using backslash. Its `shellwords()` function is
suitable for breaking command-line string into words.

_
        },
        {
            module=>'Parse::CommandLine',

lib/Acme/CPANModules/Parse/UnixShellCommandLine.pm  view on Meta::CPAN

        },
    ],
};

1;
# ABSTRACT: List of modules that parse command-line like Unix shells

__END__

=pod

=encoding UTF-8

=head1 NAME

Acme::CPANModules::Parse::UnixShellCommandLine - List of modules that parse command-line like Unix shells

=head1 VERSION

This document describes version 0.003 of Acme::CPANModules::Parse::UnixShellCommandLine (from Perl distribution Acme-CPANModules-Parse-UnixShellCommandLine), released on 2023-10-31.

=head1 DESCRIPTION

Sometimes you need to parse a Unix shell command-line string, e.g. when you want
to break it into "words".

In general I recommend L<Text::ParseWords> as it is a core module. If you want
a little more speed, try L<Parse::CommandLine::Regexp> (see reference to
benchmark in See Also).

lib/Acme/CPANModules/Parse/UnixShellCommandLine.pm  view on Meta::CPAN


=item L<Complete::Bash>

Author: L<PERLANCAR|https://metacpan.org/author/PERLANCAR>

Its C<parse_cmdline()> function can break a command-line string into words. This
function is geared for tab completion, so by default it also breaks on some
other word-breaking characters like "=", "@", and so on. Probably not what you
want generally, unless you are working with tab completion.


lib/Acme/CPANModules/Parse/UnixShellCommandLine.pm  view on Meta::CPAN


Author: L<NEILB|https://metacpan.org/author/NEILB>

This core module can split string into words with customizable quoting character
and support for escaping using backslash. Its C<shellwords()> function is
suitable for breaking command-line string into words.


=item L<Parse::CommandLine>

Author: L<SONGMU|https://metacpan.org/author/SONGMU>

lib/Acme/CPANModules/Parse/UnixShellCommandLine.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::Parse::UnixShellCommandLine -E'say $_->{module} for @{ $Acme::CPANModules::Parse::UnixShellCommandLine::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-PickingRandomItemsFromList

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/PickingRandomItemsFromList.pm  view on Meta::CPAN



**Tangentially-related modules**

<pm:App::PickArgs> provides CLI <prog:pick-args> to pick random items from
command-line arguments.

MARKDOWN
    tags => ['task', 'sampling', 'random'],
    entries => [
        {

lib/Acme/CPANModules/PickingRandomItemsFromList.pm  view on Meta::CPAN

L<Data::Random::Weighted> currently can only pick a single item.

B<Tangentially-related modules>

L<App::PickArgs> provides CLI L<pick-args> to pick random items from
command-line arguments.

=head1 ACME::CPANMODULES ENTRIES

=over

lib/Acme/CPANModules/PickingRandomItemsFromList.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::PickingRandomItemsFromList -E'say $_->{module} for @{ $Acme::CPANModules::PickingRandomItemsFromList::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-PickingRandomLinesFromFile

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/PickingRandomLinesFromFile.pm  view on Meta::CPAN

        {
            module => 'App::PickRandomLines',
            description => <<'_',

A CLI that allows you to use <pm:File::Random::Pick> or <pm:File::RandomLine> on
the command-line.

_
        },
    ],
};

lib/Acme/CPANModules/PickingRandomLinesFromFile.pm  view on Meta::CPAN

=item L<App::PickRandomLines>

Author: L<PERLANCAR|https://metacpan.org/author/PERLANCAR>

A CLI that allows you to use L<File::Random::Pick> or L<File::RandomLine> on
the command-line.


=back

=head1 FAQ

lib/Acme/CPANModules/PickingRandomLinesFromFile.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::PickingRandomLinesFromFile -E'say $_->{module} for @{ $Acme::CPANModules::PickingRandomLinesFromFile::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-PodConverters

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/PodConverters.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::PodConverters -E'say $_->{module} for @{ $Acme::CPANModules::PodConverters::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-PortedFrom-Clojure

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/PortedFrom/Clojure.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::PortedFrom::Clojure -E'say $_->{module} for @{ $Acme::CPANModules::PortedFrom::Clojure::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-PortedFrom-Go

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/PortedFrom/Go.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::PortedFrom::Go -E'say $_->{module} for @{ $Acme::CPANModules::PortedFrom::Go::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-PortedFrom-Java

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/PortedFrom/Java.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::PortedFrom::Java -E'say $_->{module} for @{ $Acme::CPANModules::PortedFrom::Java::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-PortedFrom-NPM

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/PortedFrom/NPM.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::PortedFrom::NPM -E'say $_->{module} for @{ $Acme::CPANModules::PortedFrom::NPM::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-PortedFrom-PHP

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/PortedFrom/PHP.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::PortedFrom::PHP -E'say $_->{module} for @{ $Acme::CPANModules::PortedFrom::PHP::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-PortedFrom-Python

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/PortedFrom/Python.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::PortedFrom::Python -E'say $_->{module} for @{ $Acme::CPANModules::PortedFrom::Python::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-PortedFrom-Ruby

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/PortedFrom/Ruby.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::PortedFrom::Ruby -E'say $_->{module} for @{ $Acme::CPANModules::PortedFrom::Ruby::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-QuickGraph

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/QuickChart.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::QuickChart -E'say $_->{module} for @{ $Acme::CPANModules::QuickChart::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-RandomData

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/FakeData.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::FakeData -E'say $_->{module} for @{ $Acme::CPANModules::FakeData::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-RandomPassword

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/GeneratingRandomPassword.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::GeneratingRandomPassword -E'say $_->{module} for @{ $Acme::CPANModules::GeneratingRandomPassword::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-RandomPerson

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/RandomPerson.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::RandomPerson -E'say $_->{module} for @{ $Acme::CPANModules::RandomPerson::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.

=head1 HOMEPAGE

Please visit the project's homepage at L<https://metacpan.org/release/Acme-CPANModules-RandomPerson>.

 view all matches for this distribution


Acme-CPANModules-RandomText

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/GeneratingRandomText.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::GeneratingRandomText -E'say $_->{module} for @{ $Acme::CPANModules::GeneratingRandomText::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-ReadingFilesBackward

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/ReadingFilesBackward.pm  view on Meta::CPAN

our $LIST = {
    summary => 'List of modules to read files backward (in reverse)',
    description => <<'_',

Probably the fastest way, if you are on a Unix system, is to use the **tac**
command, which can read a file line by line in reverse order, or paragraph by
paragraph, or character by character, or word by word, or by a custom separator
string or regular expression. Example for using it from Perl:

    open my $fh, "tac /etc/passwd |";
    print while <$fh>;

lib/Acme/CPANModules/ReadingFilesBackward.pm  view on Meta::CPAN

This document describes version 0.003 of Acme::CPANModules::ReadingFilesBackward (from Perl distribution Acme-CPANModules-ReadingFilesBackward), released on 2023-10-31.

=head1 DESCRIPTION

Probably the fastest way, if you are on a Unix system, is to use the B<tac>
command, which can read a file line by line in reverse order, or paragraph by
paragraph, or character by character, or word by word, or by a custom separator
string or regular expression. Example for using it from Perl:

 open my $fh, "tac /etc/passwd |";
 print while <$fh>;

lib/Acme/CPANModules/ReadingFilesBackward.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::ReadingFilesBackward -E'say $_->{module} for @{ $Acme::CPANModules::ReadingFilesBackward::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-RemovingElementsFromArray

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/RemovingElementsFromArray.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::RemovingElementsFromArray -E'say $_->{module} for @{ $Acme::CPANModules::RemovingElementsFromArray::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-RenamingFiles

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/RenamingFiles.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::RenamingFiles -E'say $_->{module} for @{ $Acme::CPANModules::RenamingFiles::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-RequireHooks

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/RequireHooks.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::RequireHooks -E'say $_->{module} for @{ $Acme::CPANModules::RequireHooks::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-Roles

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/Roles.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::Roles -E'say $_->{module} for @{ $Acme::CPANModules::Roles::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-RsyncWrappers

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/RsyncWrappers.pm  view on Meta::CPAN

    my ($list, $item) = @_;
    ref $list eq 'ARRAY' ? ((grep {$_ eq $item} @$list) ? 1:0) : ($list eq $item);
}

our $LIST = {
    summary => "List of wrappers for the rsync command",
    entries => [
        grep { _include($_->{'x.command'}, 'rsync') } @{ $srclist->{entries} }
    ],
};

1;
# ABSTRACT: List of wrappers for the rsync command

__END__

=pod

=encoding UTF-8

=head1 NAME

Acme::CPANModules::RsyncWrappers - List of wrappers for the rsync command

=head1 VERSION

This document describes version 0.002 of Acme::CPANModules::RsyncWrappers (from Perl distribution Acme-CPANModules-RsyncWrappers), released on 2023-10-31.

lib/Acme/CPANModules/RsyncWrappers.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::RsyncWrappers -E'say $_->{module} for @{ $Acme::CPANModules::RsyncWrappers::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-SExpression

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/SExpression.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::SExpression -E'say $_->{module} for @{ $Acme::CPANModules::SExpression::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-SQLite

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/SQLite.pm  view on Meta::CPAN


=item * L<App::rimetadb> - Manage a Rinci metadata database

Author: L<PERLANCAR|https://metacpan.org/author/PERLANCAR>

=item * L<App::TimeTracker> - time tracking for impatient and lazy command line lovers

Author: L<DOMM|https://metacpan.org/author/DOMM>

=back

lib/Acme/CPANModules/SQLite.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::SQLite -E'say $_->{module} for @{ $Acme::CPANModules::SQLite::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-Sampling

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/Sampling.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::Sampling -E'say $_->{module} for @{ $Acme::CPANModules::Sampling::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-Set

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/Set.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::Set -E'say $_->{module} for @{ $Acme::CPANModules::Set::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-ShellCompleters

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/ShellCompleters.pm  view on Meta::CPAN

our $DATE = '2022-03-18'; # DATE
our $DIST = 'Acme-CPANModules-ShellCompleters'; # DIST
our $VERSION = '0.002'; # VERSION

our $LIST = {
    summary => 'List of modules that provide shell tab completion for other commands/scripts',
    entries => [
        {'x.command' => 'cpanm'     , module=>'App::ShellCompleter::cpanm'},
        {'x.command' => 'emacs'     , module=>'App::ShellCompleter::emacs'},
        {'x.command' => 'meta'      , module=>'App::ShellCompleter::meta', summary=>'meta is the CLI for Acme::MetaSyntactic'},
        {'x.command' => 'mpv'       , module=>'App::ShellCompleter::mpv'},
        {'x.command' => 'pause'     , module=>'App::ShellCompleter::pause', },
        {'x.command' => 'perlbrew'  , module=>'App::ShellCompleter::perlbrew'},
        {'x.command' => 'youtube-dl', module=>'App::ShellCompleter::YoutubeDl'},
    ],
};

1;
# ABSTRACT: List of modules that provide shell tab completion for other commands/scripts

__END__

=pod

=encoding UTF-8

=head1 NAME

Acme::CPANModules::ShellCompleters - List of modules that provide shell tab completion for other commands/scripts

=head1 VERSION

This document describes version 0.002 of Acme::CPANModules::ShellCompleters (from Perl distribution Acme-CPANModules-ShellCompleters), released on 2022-03-18.

lib/Acme/CPANModules/ShellCompleters.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::ShellCompleters -E'say $_->{module} for @{ $Acme::CPANModules::ShellCompleters::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


Acme-CPANModules-Similarity

 view release on metacpan or  search on metacpan

lib/Acme/CPANModules/Similarity.pm  view on Meta::CPAN

or directly:

    % perl -MAcme::CPANModules::Similarity -E'say $_->{module} for @{ $Acme::CPANModules::Similarity::LIST->{entries} }' | cpanm -n

This Acme::CPANModules module also helps L<lcpan> produce a more meaningful
result for C<lcpan related-mods> command when it comes to finding related
modules for the modules listed in this Acme::CPANModules module.
See L<App::lcpan::Cmd::related_mods> for more details on how "related modules"
are found.

=head1 HOMEPAGE

 view all matches for this distribution


( run in 1.990 second using v1.01-cache-2.11-cpan-d8267643d1d )