After some experiments with a variety of Getopt modules and other stuff, I eventually got into the habit of using MooseX::App::Cmd, especially for stuff which is "just for myself", and found it to be pretty rewarding in the long run. Here are some of the points I like:
- The command / subcommand makes it easy to setup an environment (modules, configuration) of tasks which are somewhat related. Adding a new subcommand is dead easy: Just write an execute method for a Moose module.
- The command, entered by itself, provides a list of available subcommands. I tend to forget things and find this a lot better than ls -l ~/bin if I had individual scripts for every action.
- I don't write or modify my CLIs often. With MooseX::App::Cmd, parameter validation and documentation for the CLI play nicely with my usual habits for modules, whereas helpers like Getopt::Long and Getopt::Long::Descriptive are really nice but have learning curves of their own.
I'd probably hesitate, though, to use MooseX::App::Cmd for commands which are to be released with a small module or package because of its impressive list of dependencies.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.