| WWW-DaysOfWonder-Memoir44 documentation | Contained in the WWW-DaysOfWonder-Memoir44 distribution. |
WWW::DaysOfWonder::Memoir44::App - mem44's App::Cmd
version 2.110310
This is the main application, based on the excellent App::Cmd. Nothing much to see here, see the various subcommands available for more information, or run one of the following:
mem44 commands
mem44 help
Note that each subcommand can be abbreviated as long as the abbreviation is unambiguous.
Jerome Quelin
This software is copyright (c) 2009 by Jerome Quelin.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| WWW-DaysOfWonder-Memoir44 documentation | Contained in the WWW-DaysOfWonder-Memoir44 distribution. |
# # This file is part of WWW-DaysOfWonder-Memoir44 # # This software is copyright (c) 2009 by Jerome Quelin. # # This is free software; you can redistribute it and/or modify it under # the same terms as the Perl 5 programming language system itself. # use 5.010; use strict; use warnings; package WWW::DaysOfWonder::Memoir44::App; BEGIN { $WWW::DaysOfWonder::Memoir44::App::VERSION = '2.110310'; } # ABSTRACT: mem44's App::Cmd use App::Cmd::Setup -app; sub allow_any_unambiguous_abbrev { 1 } 1;
__END__