Golang如何快速構建一個CLI小工示例
導讀 | 這篇文章主要為大家介紹了Golang如何快速構建一個CLI小工具詳解,有需要的朋友可以借鑑參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪 |
在現實開發的過程中,大家會發現很多開源的框架都會有著自己的一個CLI工具庫來幫助開發者們透過 行的方式快速的達到某些目的,比如常見的docker 。
那麼在這篇文章當中,主要給大家介紹一個golang的小框架,我們可以藉助這個框架來快速搭建一個小的CLI工具
我們這邊構建了一個叫gtools的小工具,用來容納我們自已用golang開發的一些小的工具
>> gtools gtools is a CLI application for golang command tools. Usage: gtools [command] Available Commands: autoSelector randomly select string from a list completion Generate the autocompletion script for the specified shell help Help about any command Flags: -h, --help help for gtools -t, --toggle Help message for toggle Use "gtools [command] --help" for more information about a command.
這邊的autoSeletor是我們自己的一個小工具,用來隨機的從輸入的字元列表中選一個作為結果:
>> gtools as 學習 看電影 還是學習 學習 >> gtools as 學習 看電影 還是學習 還是學習
在這邊,我們用了一個叫cobra的框架,這個框架被廣泛運用到很多開源的產品當中,比如docker-compose, kubectl等。
首先,我們要安裝相應的環境:
go get -u github.com/spf13/cobra@latest go install github.com/spf13/cobra-cli@latest
在執行完上面兩條命令後我們就具備最基本的開發條件了,接下來開始我們的開發吧!
使用Cobra初始化我們的專案
cobra-cli init
執行完之後,我們會在本地目錄看到這樣的結構
├── main.go ├── cmd │ └── root.go
main.go就是我們的主入口了,root是我們命令的根命令
main.go
// 只是做了一個執行的操作 func main() { cmd.Execute() }
Root.go 定義了根命令,還有一些初始化的操作
var rootCmd = &cobra.Command{ Use: "gtools", // 這是你的命令的名字 Short: "A brief description of your application", Long: `A longer description that spans multiple lines and likely contains examples and usage of using your application. For example: 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.`, // Uncomment the following line if your bare application // has an action associated with it: // Run: func(cmd *cobra.Command, args []string) { }, } // 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() { // Here you will define your flags and configuration settings. // Cobra supports persistent flags, which, if defined here, // will be global for your application. // rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.main.yaml)") // Cobra also supports local flags, which will only run // when this action is called directly. rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle") }
加入我們的子命令
現在,我們需要加入一個子命令,如autoSelector, 只需執行一下命令即可:
cobra-cli add autoSelector
對應的一個叫autoSelector.go的檔案就會出現在cmd目錄底下,並且已經為你準備了基本的命令列框架
// autoSelectorCmd represents the autoSelector command var autoSelectorCmd = &cobra.Command{ Use: "autoSelector", // 名字 Aliases: []string{"as"}, // 命令列的簡寫 Short: "randomly select string from a list", //簡單的描述 Long: `randomly select string from a list`, //詳細描述 Run: func(cmd *cobra.Command, args []string) { // 在這裡加入/呼叫你的主要邏輯 } } func init() { // 註冊到根命令下 rootCmd.AddCommand(autoSelectorCmd) // Here you will define your flags and configuration settings. // Cobra supports Persistent Flags which will work for this command // and all subcommands, e.g.: // autoSelectorCmd.PersistentFlags().String("foo", "", "A help for foo") // Cobra supports local flags which will only run when this command // is called directly, e.g.: // autoSelectorCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle") }
實現我們的功能
我們可以建立一個pkg包來存放我們的具體實現邏輯,在cmd中只需要做簡單的呼叫即可
import ( "math/rand" "time" ) // 簡單實現邏輯 func AutoSelect(inputs []string) (selected string, err error) { source := rand.NewSource(time.Now().UnixNano()) r := rand.New(source) randomIndex := r.Intn(len(inputs)) selected = inputs[randomIndex] return selected, nil }
此時我們的程式碼工具就基本實現完成了,只需要編譯一下就可以直接使用。編譯執行
go build -o gtools
你就可以得到一個叫gtools的二進位制包,直接執行就可以看到我們開頭的效果啦~
程式碼倉庫: github.com/819110812/G…
原文來自:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2937995/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [轉]:如何快速構建一個簡單的程式
- 如何構建一個高效的 golang web 開發環境GolangWeb開發環境
- Rust 寫一個簡易 CLI 小工具Rust
- 使用Golang快速構建WEB應用GolangWeb
- [譯] 如何使用 Node.js 構建一個命令列應用(CLI)Node.js命令列
- 快速構建CLI程式併發布到PyPi
- 使用 golang 寫一個 redis-cliGolangRedis
- wepback基礎配置(構建一個vue-cli)--2Vue
- wepback基礎配置(構建一個vue-cli)--1Vue
- 全棧工程師如何快速構建一個Web應用全棧工程師Web
- vue-cli快速構建專案簡單介紹Vue
- 使用 typescript 快速開發一個 cliTypeScript
- 如何構建一個系統?
- 通過vue-cli3構建一個SSR應用程式Vue
- 快速開始構建一個簡單專案
- 如何構建一個WEB同構應用Web
- 如何快速構建React元件庫React元件
- 重構 第一個示例
- 使用飛冰+dva快速構建一個後臺系統
- 探索使用 Golang 和 Webassembly 構建一個多人遊戲伺服器GolangWeb遊戲伺服器
- 用 Golang 寫一個搜尋引擎(0x06)--- 索引構建Golang索引
- 如何構建一個高效的開發流程
- 如何構建一個優雅擴充套件套件
- 3 行寫爬蟲 - 使用 Goribot 快速構建 Golang 爬蟲爬蟲Golang
- 如何快速給自己構建一個溫馨的”家”——用Jekyll搭建靜態部落格
- 如何快速給自己構建一個溫馨的"家"——用Jekyll搭建靜態部落格
- 簡單介紹如何使用Bazel構建Golang程式Golang
- 構建一個 @synchronizedsynchronized
- 構建WCF RESTful service示例REST
- vue-cli構建vue專案Vue
- 怎樣構建 Golang Dockerfiles?GolangDocker
- 使用Vue-cli和NutUI快速擼一個Vue專案VueUI
- 基於vue-cli3快速釋出一個fullpage元件Vue元件
- 快速入門:構建您的第一個 .NET Aspire 應用程式
- 使用golang+antlr4構建一個自己的語言解析器(二)Golang
- 構建oracle function的小示例OracleFunction
- vue-cli構建專案使用 lessVue
- vue-cli2 構建速度優化Vue優化