How to enable bash globstar **
1 min read
Unlike Zsh, globstar **
is not enabled by default in bash.
We can enable by use shopt command (SHell OPTion)
shopt -s globstar
1 min read
Unlike Zsh, globstar **
is not enabled by default in bash.
We can enable by use shopt command (SHell OPTion)
shopt -s globstar