Is there a style guide to writing command line applications' arguments on unix platforms? Coming from the iOS world I'm thinking of something akin to the Human Interface Guidelines (HIG). I'm writing a script in Python that can take parameters.
Example: How to name arguments, when to use -dash or --doubleDash.
argparsemodule for your argument parsing stuff, it's easy to use and it more or less forces you to have a good style for your CLI. docs.python.org/dev/library/argparse.html