Go to file
Jeremy Saenz bde02d1a1a Update README.md
Installation
2013-07-15 07:44:17 -07:00
cli.go Support for global flags in help text 2013-07-14 19:16:30 -07:00
flag.go Support for global flags in help text 2013-07-14 19:16:30 -07:00
help.go Support for global flags in help text 2013-07-14 19:16:30 -07:00
README.md Update README.md 2013-07-15 07:44:17 -07:00

cli.go

cli.go is simple, fast, and fun package for building command line apps in Go. The goal is to enable developers to write fast and distributable command line applications in an expressive way.

Overview

Command line apps are usually so tiny that there is absolutely no reason why your code should not be self-documenting. Things like generating help text and parsing command flags/options should not hinder productivity when writing a command line app.

This is where cli.go comes into play. cli.go makes command line programming fun, organized, and expressive!

Installation

Make sure you have the a working Go environment. See the install instructions.

To install cli.go, simply run:

go get github.com/codegangsta/cli