本文整理汇总了Golang中github.com/spf13/cobra.Command.ParseFlags方法的典型用法代码示例。如果您正苦于以下问题:Golang Command.ParseFlags方法的具体用法?Golang Command.ParseFlags怎么用?Golang Command.ParseFlags使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/spf13/cobra.Command
的用法示例。
在下文中一共展示了Command.ParseFlags方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: main
func main() {
app := cobra.Command{
Use: "s3sync <from> <to>",
Short: "Sync files from <from> to <to>",
Run: execSync,
PreRun: func(cmd *cobra.Command, args []string) {
if cfg.PrintVersion {
fmt.Printf("s3sync %s\n", version)
os.Exit(0)
}
},
}
app.Flags().BoolVarP(&cfg.Public, "public", "P", false, "Make files public when syncing to S3")
app.Flags().BoolVarP(&cfg.Delete, "delete", "d", false, "Delete files on remote not existing on local")
app.Flags().BoolVar(&cfg.PrintVersion, "version", false, "Print version and quit")
app.Flags().IntVar(&cfg.MaxThreads, "max-threads", 10, "Use max N parallel threads for file sync")
app.Flags().UintVar(&cfg.logLevel, "loglevel", 2, "Amount of log output (0 = Error only, 3 = Debug)")
app.ParseFlags(os.Args[1:])
stdout = logger.New(logger.LogLevel(cfg.logLevel))
app.Execute()
}
示例2: cli
func cli() (*cobra.Command, error) {
// parse the configDir argument
cfgCmd := new(cobra.Command)
cfgCmd.Flags().StringVarP(&configDir, "configDir", "d", "", "Configuration directory to be added on top of the search list")
cfgCmd.ParseFlags(os.Args)
// configuration parameters
cfgParams, err := getConfigParams()
if err != nil {
return nil, err
}
// overwrites the configuration parameters with the ones specified in the command line (if any)
appParams = &cfgParams
rootCmd := new(cobra.Command)
rootCmd.Flags().StringVarP(&configDir, "configDir", "d", "", "Configuration directory to be added on top of the search list")
rootCmd.Flags().StringVarP(&appParams.log.Level, "logLevel", "o", cfgParams.log.Level, "Log level: EMERGENCY, ALERT, CRITICAL, ERROR, WARNING, NOTICE, INFO, DEBUG")
rootCmd.Flags().BoolVarP(&appParams.serverMode, "serverMode", "s", cfgParams.serverMode, "Start an HTTP RESTful API server")
rootCmd.Flags().StringVarP(&appParams.serverAddress, "serverAddress", "u", cfgParams.serverAddress, "HTTP API address (ip:port) or just (:port)")
rootCmd.Flags().StringVarP(&appParams.charset, "charset", "c", cfgParams.charset, "Characters to use to generate a password")
rootCmd.Flags().IntVarP(&appParams.length, "length", "l", cfgParams.length, "Length of each password (number of characters or bytes)")
rootCmd.Flags().IntVarP(&appParams.quantity, "quantity", "q", cfgParams.quantity, "Number of passwords to generate")
rootCmd.Flags().StringVarP(&appParams.stats.Prefix, "statsPrefix", "p", cfgParams.stats.Prefix, "StatsD bucket prefix name")
rootCmd.Flags().StringVarP(&appParams.stats.Network, "statsNetwork", "k", cfgParams.stats.Network, "StatsD client network type (udp or tcp)")
rootCmd.Flags().StringVarP(&appParams.stats.Address, "statsAddress", "m", cfgParams.stats.Address, "StatsD daemon address (ip:port) or just (:port)")
rootCmd.Flags().IntVarP(&appParams.stats.FlushPeriod, "statsFlushPeriod", "r", cfgParams.stats.FlushPeriod, "StatsD client flush period in milliseconds")
rootCmd.Use = "rndpwd"
rootCmd.Short = "Command-line and Web-service Random Password Generator"
rootCmd.Long = `rndpwd is a Command-line and Web-service Random Password Generator`
rootCmd.RunE = func(cmd *cobra.Command, args []string) error {
// check values
err := checkParams(appParams)
if err != nil {
return err
}
// initialize StatsD client (ignore errors)
initStats(appParams.stats)
defer stats.Close()
if appParams.serverMode {
// start the HTTP server
return startServer(appParams.serverAddress)
}
// generate and print the passwords
for _, psw := range getAllPassword(appParams) {
fmt.Println(psw)
}
return nil
}
// sub-command to print the version
var versionCmd = &cobra.Command{
Use: "version",
Short: "print this program version",
Long: `print this program version`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println(ProgramVersion)
},
}
rootCmd.AddCommand(versionCmd)
return rootCmd, nil
}