Command Line Interface Guidelines
Command Line Interface Guidelines
An open-source guide to help you write better command-line programs, taking traditional UNIX principles and updating them for the modern day.
I've been using this guide for writing a CLI tool for my company. Kudos to the authors for the amazing insights.
5 0 ReplyFWIW a good library will do a lot of this for you - e.g. clap for Rust.
3 0 ReplyYes. I'm using Python Click FYI.
I mean I've been writing a CLI tool, not a CLI engine.
3 0 Reply
If it supports
-?
or--help
, we can figure out the rest from the copious & accessible documentation that it will give us then.4 0 ReplySuch refreshing optimism!
2 0 ReplyIn other optimism, if I can
apt-get install
it, it has a manpage written by someone who's at least as entertaining a writer as Larry Wall.3 0 Reply
This looks like a fantastic resource, thank you for sharing it! Saved.
3 0 ReplyThis is awesome, I was looking for something like this very recently!
2 0 Reply