如何提供带bin命令的bin

问题描述 投票:-1回答:1

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

我用眼镜蛇回购https://github.com/spf13/cobra

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

我明白了

Print: 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中的文件 - 这是Unix executable - 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()
}
shell go command-line-interface go-cobra
1个回答
4
投票

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

© www.soinside.com 2019 - 2024. All rights reserved.