The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

exact::cli - Command-line interface helper utilities extension for exact

VERSION

version 1.01

SYNOPSIS

    use exact cli;

DESCRIPTION

exact::cli is command-line interface helper utilities extension for exact. It effectively is an integration of Util::CommandLine with exact. Consult the Util::CommandLine documentation for additional information. See the exact documentation for additional informatioh about extensions. The intended use of exact::cli is via the extension interface of exact.

    use exact cli, conf, noutf8;

However, you can also use it directly, which will also use exact with default options:

    use exact::cli;

IMPORTED FUNCTIONS

The following functions are imported:

options

This is the same function from Util::CommandLine.

pod2usage

This is the same function from Util::CommandLine.

readmode

This is the same function from Util::CommandLine.

singleton

This function is the equivalent of the singleton flag to Util::CommandLine.

    use Util::CommandLine 'singleton';

However, note that calling this method executes the functionally at runtime, not during import, which is normally what happens with Util::CommandLine.

podhelp

This function is the equivalent of the podhelp flag to Util::CommandLine.

    use Util::CommandLine 'podhelp';

However, note that calling this method executes the functionally at runtime, not during import, which is normally what happens with Util::CommandLine.

SEE ALSO

You can look for additional information at:

AUTHOR

Gryphon Shafer <gryphon@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2019 by Gryphon Shafer.

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