How to disable a shopt
option, for example extglob
?
I have this in my .bashrc
file:
shopt -s extglob
How to disable a shopt
option, for example extglob
?
I have this in my .bashrc
file:
shopt -s extglob
Copyright © 2021 Jogjafile Inc.
Use the
-u
option:-s
is for setting and-u
is for unsetting.From
help shopt
(orshopt --help
as well on BSD systems):To see how to do shopt in a clean way, see this:
https://github.com/codeforester/base/blob/master/lib/shopt.sh