Questions tagged «options»

将-l或--word之类的选项传递给命令,或在脚本中解析它们。

1
如何使用bash将多行附加到文件中,在字符串前面加上“-”
问题与如何使用bash将多行追加到文件中非常类似,但是我想使用来启动文件--,并且如果可能的话还希望追加到文件中。 printf "--no-color\n--format-doc\n--no-profile\n" >> ~/.rspec-test 问题是以“-”开头的文件给了我一个: -bash: printf: --: invalid option printf: usage: printf [-v var] format [arguments] 有办法逃脱--吗?有其他选择吗?我不确定如何使用进行多行操作echo,cat也不是一个好选择,我想将其包含在自动化脚本中。

2
将参数传递给su提供的shell
man su 说: You can use the -- argument to separate su options from the arguments supplied to the shell. man bash 说: -- A -- signals the end of options and disables further option processing. Any arguments after the -- are treated as filenames and arguments. An argument of …
8 bash  shell  su  options 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.