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

NAME

Clustericious::Client::Command - Command line type processing for clients.

SYNOPSIS

# in fooclient :

 use Foo::Client;
 use Clustericious::Client::Command;

 Clustericious::Client::Command->run(Foo::Client->new, @ARGV);

Then

 fooclient status
 fooclient --trace root status
 fooclient version
 fooclient foobject 31
 fooclient foobject_search --color beige

DESCRIPTION

This will try to take command line arguments and call the right client methods.

Calling 'fooclient bar baz' is equivalent to Foo::Client->new()->bar("baz").

CAVEATS

There are currently a few heuristics used when one of the arguments is a filename (i.e. is it a yaml file that should be parsed and send as a hashref, or a filename that should be PUT? Should STDIN be used?). These need to be formalized and documented.

NOTES

This is a beta release, the API is subject to change without notice.

TODO

Document and stabilize the API.

METHODS

run

 Clustericious::Client::Command->run(Some::Clustericious::Client->new, @ARGV);