英文:
Configure a default directory path in Go with Cobra and Viper
问题
我想让我的CLI应用程序用户输入一个特定的路径,以指定他们想要保存文件的位置。
我尝试使用Cobra的--config标志,但我不知道该怎么做。
示例:
app --config path "~/Documents/"
我该如何实现这个功能?
英文:
I want the user of my CLI app to enter a specific path where they want to save files.
I tried to use Cobra's --config flag but I don't know how to.
Example:
app --config path "~/Documents/"
How could I do this?
答案1
得分: 1
你可以尝试指定一个绝对路径。
app --config path "$HOME/Documents/"
英文:
You could try to sepcify a absolute path.
app --config path "$HOME/Documents/"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论