Golang如何快速构建一个CLI小工具详解
来源:脚本之家
时间:2022-12-22 16:37:19 345浏览 收藏
IT行业相对于一般传统行业,发展更新速度更快,一旦停止了学习,很快就会被行业所淘汰。所以我们需要踏踏实实的不断学习,精进自己的技术,尤其是初学者。今天golang学习网给大家整理了《Golang如何快速构建一个CLI小工具详解》,聊聊构建、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…
终于介绍完啦!小伙伴们,这篇关于《Golang如何快速构建一个CLI小工具详解》的介绍应该让你收获多多了吧!欢迎大家收藏或分享给更多需要学习的朋友吧~golang学习网公众号也会发布Golang相关知识,快来关注吧!
-
279 收藏
-
386 收藏
-
141 收藏
-
367 收藏
-
179 收藏
-
233 收藏
-
322 收藏
-
181 收藏
-
316 收藏
-
244 收藏
-
300 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习