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
-uoption:-sis for setting and-uis for unsetting.From
help shopt(orshopt --helpas 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