学习 NAnt - 帮助中的 [+|-] 是什么意思?
如果我输入 nant -help
我会收到有关各种命令行选项的帮助信息。
有些,例如 find
具有后缀 [+|-]
,例如
-find[+|-] Search parent directories for build file
[+|-]
是什么意思?
If I type nant -help
I receive help information about the various command-line options.
Some, such as find
have a suffix of [+|-]
, e.g.
-find[+|-] Search parent directories for build file
What does the [+|-]
mean?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在命令行选项语法中,有时使用
[...]
表示可选项,|
用于表示替代项。所以看起来这里有 3 种不同的变体:文档应该阐明每种变体的含义。
另请参阅
<块引用>
...
-find+
查找nant.build
遍历备份文件夹结构In command line options syntax, sometimes
[...]
is used to denote optional items, and|
is used to denote alternate. So it looks like there are 3 different variations here:The documentation should clarify what each of these variation means.
See also
根据 源代码,find是boolean类型,添加+或-只是相应地设置为true或false。我认为 - 对于覆盖以前的设置很有用,但不知道为什么你想要一个显式的 + 。
According to the source code, find is a boolean type, and adding + or - simply sets it to true or false accordingly. I suppose the - is useful to override a previous setting, don't know why you'd want to have an explicit + though.