第一个golang项目增加help指令并调整指令模式

2024-09-02 03:52

本文主要是介绍第一个golang项目增加help指令并调整指令模式,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

第一个golang项目增加help指令并调整指令模式

  • 调整指令模式
  • 增加help指令
  • 减少了配置文件的解析读取次数
  • 新指令模式
  • 打包并运行

上一篇文章

调整指令模式

  • version指令修改为-v-version
  • replace指令修改为-r-replace
  • dir参数修改为-d-directory
package commandsimport ("flag""fmt""log""os""strings""github.com/spf13/viper"
)var (help    boolversion boolreplace booldirectory string
)func Init() {flag.BoolVar(&help, "h", false, "this `help` and exit")flag.BoolVar(&help, "help", false, "this `help` and exit")flag.BoolVar(&version, "v", false, "show `version` and exit")flag.BoolVar(&version, "version", false, "show `version` and exit")flag.BoolVar(&replace, "r", false, "send `replace` to process and replace content for scan files under directory.")flag.BoolVar(&replace, "replace", false, "send `replace` to process and replace content for scan files under directory.")// 注意 `directory`。默认是 -d string,有了 `directory` 之后,变为 -d directoryflag.StringVar(&directory, "d", "", "send `directory` to process: standard, standard-fix, saas, saas-fix")flag.StringVar(&directory, "directory", "", "send `directory` to process: standard, standard-fix, saas, saas-fix")// 改变默认的 Usageflag.Usage = usageviper.SetConfigName("config") // 配置文件名(不包含扩展名)viper.SetConfigType("toml")   // 配置文件格式viper.AddConfigPath(".")      // 查找配置文件的路径if err := viper.ReadInConfig(); err != nil {log.Fatalf("Error reading config file, %s", err)}flag.Parse()
}func usage() {version := viper.Get("version").(string)cmd := os.Args[0]fmt.Fprintf(os.Stderr, `%s version: %s
Usage: %s [-hvq] [-d,directory directory]Options:
`, cmd, version, cmd)flag.PrintDefaults()
}func Run() {Init()if help {flag.Usage()} else if version {Version()} else if replace {dir := "standard"if strings.TrimSpace(directory) != "" {dir = directory}Replace(dir)} else {flag.Usage()}
}

增加help指令

  • -h-help指令,打印程序已知参数列表及参数说明
func usage() {version := viper.Get("version").(string)cmd := os.Args[0]fmt.Fprintf(os.Stderr, `%s version: %s
Usage: %s [-hvq] [-d,directory directory]Options:
`, cmd, version, cmd)flag.PrintDefaults()
}

减少了配置文件的解析读取次数

  • 在程序执行初始化时解析一次,后续皆可使用
func Init() {flag.BoolVar(&help, "h", false, "this `help` and exit")flag.BoolVar(&help, "help", false, "this `help` and exit")flag.BoolVar(&version, "v", false, "show `version` and exit")flag.BoolVar(&version, "version", false, "show `version` and exit")flag.BoolVar(&replace, "r", false, "send `replace` to process and replace content for scan files under directory.")flag.BoolVar(&replace, "replace", false, "send `replace` to process and replace content for scan files under directory.")// 注意 `directory`。默认是 -d string,有了 `directory` 之后,变为 -d directoryflag.StringVar(&directory, "d", "", "send `directory` to process: standard, standard-fix, saas, saas-fix")flag.StringVar(&directory, "directory", "", "send `directory` to process: standard, standard-fix, saas, saas-fix")// 改变默认的 Usageflag.Usage = usageviper.SetConfigName("config") // 配置文件名(不包含扩展名)viper.SetConfigType("toml")   // 配置文件格式viper.AddConfigPath(".")      // 查找配置文件的路径if err := viper.ReadInConfig(); err != nil {log.Fatalf("Error reading config file, %s", err)}flag.Parse()
}

新指令模式

func Run() {Init()if help {flag.Usage()} else if version {Version()} else if replace {dir := "standard"if strings.TrimSpace(directory) != "" {dir = directory}Replace(dir)} else {flag.Usage()}
}

打包并运行

go build -v -ldflags "-linkmode external -extldflags '-static' -w" -o devtools.exe main.go
devtools.exe -h
devtools.exe -help
devtools.exe -v
devtools.exe -version
devtools.exe -r -d saas
devtools.exe -replace -directory saas

在这里插入图片描述

https://gitee.com/xqxyxchy/dev-tools
尽情享用吧

这篇关于第一个golang项目增加help指令并调整指令模式的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1128919

相关文章

Golang操作DuckDB实战案例分享

《Golang操作DuckDB实战案例分享》DuckDB是一个嵌入式SQL数据库引擎,它与众所周知的SQLite非常相似,但它是为olap风格的工作负载设计的,DuckDB支持各种数据类型和SQL特性... 目录DuckDB的主要优点环境准备初始化表和数据查询单行或多行错误处理和事务完整代码最后总结Duck

Golang的CSP模型简介(最新推荐)

《Golang的CSP模型简介(最新推荐)》Golang采用了CSP(CommunicatingSequentialProcesses,通信顺序进程)并发模型,通过goroutine和channe... 目录前言一、介绍1. 什么是 CSP 模型2. Goroutine3. Channel4. Channe

Python 中 requests 与 aiohttp 在实际项目中的选择策略详解

《Python中requests与aiohttp在实际项目中的选择策略详解》本文主要介绍了Python爬虫开发中常用的两个库requests和aiohttp的使用方法及其区别,通过实际项目案... 目录一、requests 库二、aiohttp 库三、requests 和 aiohttp 的比较四、requ

SpringBoot项目启动后自动加载系统配置的多种实现方式

《SpringBoot项目启动后自动加载系统配置的多种实现方式》:本文主要介绍SpringBoot项目启动后自动加载系统配置的多种实现方式,并通过代码示例讲解的非常详细,对大家的学习或工作有一定的... 目录1. 使用 CommandLineRunner实现方式:2. 使用 ApplicationRunne

使用IntelliJ IDEA创建简单的Java Web项目完整步骤

《使用IntelliJIDEA创建简单的JavaWeb项目完整步骤》:本文主要介绍如何使用IntelliJIDEA创建一个简单的JavaWeb项目,实现登录、注册和查看用户列表功能,使用Se... 目录前置准备项目功能实现步骤1. 创建项目2. 配置 Tomcat3. 项目文件结构4. 创建数据库和表5.

Python项目打包部署到服务器的实现

《Python项目打包部署到服务器的实现》本文主要介绍了PyCharm和Ubuntu服务器部署Python项目,包括打包、上传、安装和设置自启动服务的步骤,具有一定的参考价值,感兴趣的可以了解一下... 目录一、准备工作二、项目打包三、部署到服务器四、设置服务自启动一、准备工作开发环境:本文以PyChar

多模块的springboot项目发布指定模块的脚本方式

《多模块的springboot项目发布指定模块的脚本方式》该文章主要介绍了如何在多模块的SpringBoot项目中发布指定模块的脚本,作者原先的脚本会清理并编译所有模块,导致发布时间过长,通过简化脚本... 目录多模块的springboot项目发布指定模块的脚本1、不计成本地全部发布2、指定模块发布总结多模

SpringBoot项目删除Bean或者不加载Bean的问题解决

《SpringBoot项目删除Bean或者不加载Bean的问题解决》文章介绍了在SpringBoot项目中如何使用@ComponentScan注解和自定义过滤器实现不加载某些Bean的方法,本文通过实... 使用@ComponentScan注解中的@ComponentScan.Filter标记不加载。@C

Golang使用minio替代文件系统的实战教程

《Golang使用minio替代文件系统的实战教程》本文讨论项目开发中直接文件系统的限制或不足,接着介绍Minio对象存储的优势,同时给出Golang的实际示例代码,包括初始化客户端、读取minio对... 目录文件系统 vs Minio文件系统不足:对象存储:miniogolang连接Minio配置Min

Golang使用etcd构建分布式锁的示例分享

《Golang使用etcd构建分布式锁的示例分享》在本教程中,我们将学习如何使用Go和etcd构建分布式锁系统,分布式锁系统对于管理对分布式系统中共享资源的并发访问至关重要,它有助于维护一致性,防止竞... 目录引言环境准备新建Go项目实现加锁和解锁功能测试分布式锁重构实现失败重试总结引言我们将使用Go作