4

例如,如何禁用一个shopt选项extglob

我的.bashrc文件中有这个:

shopt -s extglob
4

1 回答 1

8

使用-u选项:

shopt -u extglob
  • -s用于设置,-u用于取消设置。

help shopt(或shopt --help在 BSD 系统上):

Options:
  -o    restrict OPTNAMEs to those defined for use with `set -o'
  -p    print each shell option with an indication of its status
  -q    suppress output
  -s    enable (set) each OPTNAME
  -u    disable (unset) each OPTNAME

要了解如何以干净的方式进行 shopt,请参阅:

https://github.com/codeforester/base/blob/master/lib/shopt.sh

于 2017-05-29T05:33:16.083 回答