<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
Github:https://github.com/spf13/
cobraStar:26.5K
Cobra是一個用Go語言實現的命令列工具。並且現在正在被很多專案使用,例如:Kubernetes、Hugo和Github CLI等。通過使用Cobra,我們可以快速的建立命令列工具,特別適合寫測試指令碼,各種服務的Admin CLI等。比如 Mattermost 專案,就寫了很多 Admin CLI:
我們看一個簡單的demo使用前
package main import ( "flag" "fmt" ) func main() { flag.Parse() args := flag.Args() if len(args) <= 0 { fmt.Println("Usage: admin-cli [command]") return } switch args[0] { case "help": // ... case "export": //... if len(args) == 3 { // 匯出到檔案 // todo } else if len(args) == 2 { // 匯出... // todo } default: //... } }
使用後
package main import ( "fmt" "github.com/spf13/cobra" "os" ) // rootCmd represents the base command when called without any subcommands var rootCmd = &cobra.Command{ Use: "api", Short: "A brief description of your application", Long: `A longer description `, } // 命令一 var mockMsgCmd = &cobra.Command{ Use: "mockMsg", Short: "批次傳送測試文字訊息", Long: ``, Run: func(cmd *cobra.Command, args []string) { fmt.Println("mockMsg called") }, } // 命令二 var exportCmd = &cobra.Command{ Use: "export", Short: "匯出資料", Long: ``, Run: func(cmd *cobra.Command, args []string) { fmt.Println("export called") }, } func Execute() { err := rootCmd.Execute() if err != nil { os.Exit(1) } } func init() { rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle") rootCmd.AddCommand(mockMsgCmd) rootCmd.AddCommand(exportCmd) exportCmd.Flags().StringP("out", "k", "./backup", "匯出路徑") } func main() { Execute() }
執行:
$ go run main.go A longer description Usage: api [command] Available Commands: completion Generate the autocompletion script for the specified shell export 匯出資料 help Help about any command mockMsg 批次傳送測試文字訊息 Flags: -h, --help help for api -t, --toggle Help message for toggle Use "api [command] --help" for more information about a command.
發現了嗎?你不用再處理各種引數組合了,從此釋放了出來,只需要寫自己的業務邏輯即可!
Cobra由三部分組成:
官方推薦命令格式為:
$ ./appName command args --Flag
如 hugo server --port=1313 :
Go pkg
新增依賴
$ go get -u github.com/spf13/cobra@latest
匯入即可:
import "github.com/spf13/cobra"
建議安裝命令列工具 `cobra-cli` ,以方便快速建立cobra專案,增加command等。
# 命令列工具 $ go install github.com/spf13/cobra-cli@latest
安裝完成之後,執行 `cobra-cli --help` (請確保GOBIN已設定),輸出下列資訊則代表成功:
$ cobra-cli --help 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. Usage: cobra-cli [command] Available Commands: add Add a command to a Cobra Application completion Generate the autocompletion script for the specified shell help Help about any command init Initialize a Cobra Application Flags: -a, --author string author name for copyright attribution (default "YOUR NAME") --config string config file (default is $HOME/.cobra.yaml) -h, --help help for cobra-cli -l, --license string name of license for the project --viper use Viper for configuration Use "cobra-cli [command] --help" for more information about a command.
新建cobra命令列程式
安裝了cobra-cli工具之後,執行 init 初始化建立專案:
$ cobra-cli init
此時,在當前目錄自動生成如下檔案:
├── LICENSE ├── cmd │ └── root.go └── main.go
main.go:
package main import "tools/api/cmd" func main() { cmd.Execute() }
root.go(有刪減):
package cmd import ( "fmt" "github.com/spf13/cobra" ) // rootCmd represents the base command when called without any subcommands var rootCmd = &cobra.Command{ Use: "api", Short: "A brief description of your application", Long: `A longer description `, //Run: func(cmd *cobra.Command, args []string) { // fmt.Println("api called") //}, } // Execute adds all child commands to the root command and sets flags appropriately. // This is called by main.main(). It only needs to happen once to the rootCmd. func Execute() { err := rootCmd.Execute() if err != nil { os.Exit(1) } } func init() { // 全域性flag // rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.api.yaml)") // local flag,暫不知道用處 rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle") }
此時執行,不用指定引數,會執行rootCmd,列印使用說明:
$ go build $ ./api
輸出:
A longer description
Usage:
api [command]
Available Commands:
completion Generate the autocompletion script for the specified shell
help Help about any command
Flags:
-h, --help help for api
-t, --toggle Help message for toggle
Use "api [command] --help" for more information about a command.
分析上面的預設輸出:
我們來新增一個命令試試,這也是命令列程式的魅力,通過不同的引數執行不同的動作。
語法:
$ cobra-cli add [command]
比如:
$ cobra-cli add mock-msg mockMsg created at /Users/xxx/repo/tools/api
此時,在cmd下會多一個檔案(mock_msg.go),內容如下:
package cmd import ( "fmt" "github.com/spf13/cobra" ) var mockMsgCmd = &cobra.Command{ Use: "mockMsg", Short: "A brief description of your command", Long: `mock msg command`, Run: func(cmd *cobra.Command, args []string) { fmt.Println("mockMsg called") }, } func init() { rootCmd.AddCommand(mockMsgCmd) }
再執行rootCmd:
$ go build $ ./api
會發現,多了一個命令:
// ... Available Commands: completion Generate the autocompletion script for the specified shell help Help about any command mockMsg A brief description of your command // ...
執行mocMsg命令:
$ ./api mockMsg mockMsg called
此時,就可以在生成的mock_msg.go:Run() 函數中,放你自己的業務邏輯程式碼了。
上面新增了一個命令mockMsg,通過 ./api help 列印了命令和help,但是 `Use` 裡面指定的內容列印到哪裡去了呢?這個時候,需要針對Command在指定help,此時就能列印這個命令的具體用法了。
./api mockMsg help 批次生產mq訊息 Usage: benchmark mockmsg [flags] Flags: -g, --goroutine int32 並行routine數量 (default 1) -h, --help help for mockmsg -p, --packet int32 每個routine一秒寫入mq的數量 (default 20)
<br>-g和-p是新增的2個flag:
func init() { mockmsgCmd.Flags().Int32P("goroutine", "g", 1, "並行routine數量") mockmsgCmd.Flags().Int32P("packet", "p", 20, "每個routine一秒寫入mq的數量") rootCmd.AddCommand(mockmsgCmd) }
獲取這2個值:
// mockmsgCmd represents the mockmsg command var mockmsgCmd = &cobra.Command{ Use: "mockmsg", Short: "批次生產mq訊息", Run: func(cmd *cobra.Command, args []string) { // 這裡要寫全名 g, _ := cmd.Flags().GetInt32("goroutine") p, _ := cmd.Flags().GetInt32("packet") fmt.Println("mockmsg called,flags:g=", g, ",p=", p, ",args:", args) }, }
執行:
$ go run main.go mockmsg -p 322 -g 5 args1 args2 mockmsg called,flags:g= 5 ,p= 322 ,args: [args1 args2]
我們通過一個例子,介紹了使用cobra帶來的好處。通過一個完整的入門實踐,演示了建立專案、新增命令和使用的一些範例,希望對你有所幫助!
參考:
https://blog.csdn.net/qq_31639829/article/details/118889580
https://github.com/mattermost/mattermost-server
到此這篇關於go Cobra命令列工具入門的文章就介紹到這了,更多相關go Cobra命令列工具內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45