Ben Chuanlong Du's Blog

It is never too late to learn.

Hands on the Cobra Module in Golang

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Comments

  1. Cobra support groups of flags which appear together or are mutually exclusive. For detailed discussions, please refer to Flag Groups .

Quickly Start a Cobra-based project

Below is an example of creating a cobra-based project "icon".

In [ ]:
mkdir icon
cd icon
go mod init legendu.net/icon
go get -u github.com/spf13/cobra@latest
go install github.com/spf13/cobra-cli@latest
 ~/go/bin/cobra-cli init
In [ ]:
 

Comments