1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
.TH "COBRA" "1" "Dec 2015" "github.com/spf13/cobra" "Cobra Manual" ""
.nh
.ad l
.SH NAME
.PP
cobra \- A generator for Cobra based Applications
.SH SYNOPSIS
.PP
\fBcobra\fP [OPTIONS]
.SH DESCRIPTION
.PP
Cobra is a CLI library for Go that empowers applications.
This application is a tool to generate the needed files
to quickly create a Cobra application.
.SH OPTIONS
.PP
\fB\-a\fP, \fB\-\-author\fP="YOUR NAME"
Author name for copyright attribution
.PP
\fB\-\-config\fP=""
config file (default is $HOME/.cobra.yaml)
.PP
\fB\-l\fP, \fB\-\-license\fP=""
Name of license for the project (can provide \fB\fClicensetext\fR in config)
.PP
\fB\-b\fP, \fB\-\-projectbase\fP=""
base project directory, e.g. github.com/spf13/
.PP
\fB\-\-viper\fP[=true]
Use Viper for configuration
.SH SEE ALSO
.PP
\fBcobra\-add(1)\fP, \fBcobra\-init(1)\fP
|