如何解释bash命令“用法”语法?

前端之家收集整理的这篇文章主要介绍了如何解释bash命令“用法”语法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
例如,你究竟如何解释命令“usage”输出输出.

例如,在我的OS X上,cp给了我

usage: cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file
       cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory

>嵌套选项(如-H在-R中)表示什么?
>大小写有什么意义吗?
>什么时候参数是可选的,必需的?

我需要针对我的程序实现一个telnet命令行,我想直截了当.

对于任何想要了解输出用法意味着什么的人来说,最好的办法就是男人.

认真地:-)花时间学习惯例,这真的很有帮助.

The following conventions apply to the SYNOPSIS section and can be used
   as a guide in other sections.

   bold text          type exactly as shown.
   italic text        replace with appropriate argument.
   [-abc]             any or all arguments within [ ] are optional.
   -a|-b              options delimited by | cannot be used together.
   argument ...       argument is repeatable.
   [expression] ...   entire expression within [ ] is repeatable.
原文链接:/bash/386095.html

猜你在找的Bash相关文章