英文:
How to implement multiple options with cobra
问题
我尝试了这个:
projCmd.Flags().StringVarP(&flag, "type", "t", flag, "help")
但是,如何像这样使用 cobra 实现多个选项:
mycli new -t one -n two
英文:
I try this:
projCmd.Flags().StringVarP(&flag, "type", "t", flag, "help")
But, how to implement multiple options with cobra like this:
mycli new -t one -n two
答案1
得分: 0
添加第二行,包含你想要添加的下一个选项。你不限于只使用一行。
例如:
projCmd.Flags().StringVarP(&flag, "type", "t", flag, "帮助信息")
projCmd.Flags().StringVarP(&flag2, "some", "s", flag2, "一些描述")
英文:
Add a second line with the next option you want to add. You are not limited to use one.
Eg:
projCmd.Flags().StringVarP(&flag, "type", "t", flag, "help")
projCmd.Flags().StringVarP(&flag2, "some", "s", flag2, "some description")
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论