NAME
App::Cmd::Command - a base class for App::Cmd commands
VERSION
$Id: /my/cs/projects/app-cmd/trunk/lib/App/Cmd/Command.pm 24994 2006-08-24T04:32:29.796445Z rjbs $
METHODS
new
This returns a new instance of the command plugin.
prepare
my ( $cmd, $opt, $args ) = $class->prepare( @args );
Return a command object parse the command line options, arguments, etc.
run
$command_plugin->run($opt, $arg);
This method does whatever it is the command should do! It is passed a hash reference of the parsed command-line options and an array reference of left over arguments.
app
This method returns the App::Cmd object into which this command is plugged.
usage
This method returns the usage object for this command. (See Getopt::Long::Descriptive).
command_names
This method returns a list of command names handled by this plugin. If this method is not overridden by a App::Cmd::Command subclass, it will return the last part of the plugin's package name, converted to lowercase.
For example, YourApp::Cmd::Command::Init will, by default, handle the command "init"
usage_desc
This method should be overridden to provide a usage string. (This is the first argument passed to describe_options
from Getopt::Long::Descriptive.)
If not overridden, it returns "%c COMMAND %o"; COMMAND is the first item in the result of the command_names
method.
opt_spec
This method should be overridden to provide option specifications. (This is list of arguments passed to describe_options
from Getopt::Long::Descriptive, after the first.)
If not overridden, it returns an empty list.
validate_args
$command_plugin->validate_args($opt, $arg);
This method is passed a hashref of command line options (as processed by Getopt::Long::Descriptive) and an arrayref of leftover arguments. It may throw an exception if they are invalid, or may do nothing to allow processing to continue.
usage_error
$self->usage_error("Your mother!");
Used to die with nice usage output, durinv validate_args
.
abstract
This method returns a short description of the command's purpose. If this method is not overriden, it will return the abstract from the module's POD. If it can't find the abstract, it will return the string "(unknown")
AUTHOR AND COPYRIGHT
See App::Cmd.