Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望我的 CLI 应用程序的用户输入他们要保存文件的特定路径。我尝试使用 Cobra 的 --config 标志,但我不知道如何使用。
例子:
app --config path "~/Documents/"
我怎么能这样做?
您可以尝试指定绝对路径。
app --config path "$HOME/Documents/"