shopt(shell选项)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shopt(shell选项)相关的知识,希望对你有一定的参考价值。

//for options available, see:
http://www.ss64.com/bash/shopt.html
  1. // display all shell options with their status
  2. shopt
  3.  
  4. // display only set (on) options
  5. shopt -s
  6.  
  7. //display only unset (off) options
  8. shopt -u
  9.  
  10. //set (turn on) an option
  11. shopt -s foo
  12.  
  13. //unset (turn off) an option
  14. shopt -u bar

以上是关于shopt(shell选项)的主要内容,如果未能解决你的问题,请参考以下文章

shopt(shell选项)

Bash中的shopt选项

linux命令-shopt

Linux 命令(228)—— shopt 命令(builtin)

Linux 命令(228)—— shopt 命令(builtin)

shell tips