|
NAMEApp::CLI::Command::HelpSYNOPSISpackage MyApp::Help; use base qw(App::CLI::Command::Help); sub run { my $self = shift; # preprocess $self->SUPER::run(@_); # App::CLI::Command::Help would output POD of each command } DESCRIPTIONYour command class should be capitalized.To add a help message, just add POD in the command class: package YourApp::Command::Foo; =head1 NAME YourApp::Command::Foo - execute foo =head1 DESCRIPTION blah blah =head1 USAGE .... =cut
Visit the GSP FreeBSD Man Page Interface. |