shell - 如何为 go bin 提供命令

标签 shell go command-line-interface go-cobra

我使用以下代码创建命令,该命令应根据一些标志运行 从 cli 传递。

我使用 cobra 存储库 https://github.com/spf13/cobra

当我用 go run main.go echo test 运行它时

我明白了

打印:测试

有效。

现在我运行 go install 打开 bin 目录并单击文件 newApp(这是我的应用程序名称)

然后打印

Usage:
  MZR [command]

Available Commands:
  echo        Echo anything to the screen
  help        Help about any command
  print       Print anything to the screen

Flags:
  -h, --help   help for MZR

Use "MZR [command] --help" for more information about a command.


[Process completed]

而且我不使用任何命令(比如MZR echo),当我使用go run main.go echo test<在本地运行它时我可以使用它

但我想像 以下 MZR -hMZR echo 一样使用它, 我该怎么做? (同时将 go install 后创建的 bin 中的文件提供给我的 friend - 这是 Unix 可执行文件 - 3.8 MB )

例如像这个使用相同命令行工具并运行它的 repo,你可以使用 hoarder --server https://github.com/nanopack/hoarder

这是示例代码(使其更简单)

package main

import (
    "fmt"
    "strings"

    "github.com/spf13/cobra"
)

func main() {
    var echoTimes int

    var cmdPrint = &cobra.Command{
        Use:   "print [string to print]",
        Short: "Print anything to the screen",
        Long: `print is for printing anything back to the screen.
For many years people have printed back to the screen.`,
        Args: cobra.MinimumNArgs(1),
        Run: func(cmd *cobra.Command, args []string) {
            fmt.Println("Print: " + strings.Join(args, " "))
        },
    }

    var cmdEcho = &cobra.Command{
        Use:   "echo [string to echo]",
        Short: "Echo anything to the screen",
        Long: `echo is for echoing anything back.
Echo works a lot like print, except it has a child command.`,
        Args: cobra.MinimumNArgs(1),
        Run: func(cmd *cobra.Command, args []string) {
            fmt.Println("Print: " + strings.Join(args, " "))
        },
    }

    var cmdTimes = &cobra.Command{
        Use:   "times [# times] [string to echo]",
        Short: "Echo anything to the screen more times",
        Long: `echo things multiple times back to the user by providing
a count and a string.`,
        Args: cobra.MinimumNArgs(1),
        Run: func(cmd *cobra.Command, args []string) {
            for i := 0; i < echoTimes; i++ {
                fmt.Println("Echo: " + strings.Join(args, " "))
            }
        },
    }

    cmdTimes.Flags().IntVarP(&echoTimes, "times", "t", 1, "times to echo the input")

    var rootCmd = &cobra.Command{Use: "MZR"}
    rootCmd.AddCommand(cmdPrint, cmdEcho)
    cmdEcho.AddCommand(cmdTimes)
    rootCmd.Execute()
}

最佳答案

可执行文件的名称取自目录名称。将目录 newApp 重命名为 MZR。通过此更改,go install 命令将创建一个名为 MZR 的可执行文件。如果可执行文件在您的路径上,那么您可以使用 MZR -hMZR echo 从命令行运行它,

关于shell - 如何为 go bin 提供命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47856810/

相关文章:

go - 如何在类型上同时实现 fmt.Stringer 和 error 接口(interface)?

java - 通过 shell 添加对现有 pom.xml 的依赖

linux - Bash shell 脚本: How to Sum the Values in a File With the Use of For Loop and bc Command

go - 在原始 map 上进行测距时重命名 map 中键的惯用方式

file - 如何将 stdout 和 stderr 重定向到文件并仍然仅输出 stderr?

http - ListenAndServe 返回 net.DNSError "nodename nor servname provided"

php - Ubuntu PHP - 无法启动

javascript - 如何在 Ngoninit() 中使用增量运算符?

linux - 在日志文件中查找间隔

linux - 查找文件并重定向屏幕上找到的第一个文件的内容