Things under legendu
Fish Shell is preferred to Bash/Zsh. The following content is for Bash/Zsh only.
Enable Extended Globbing¶
:::bash
shopt -s extglobOr you can run bash with the option -O extglob.
:::bash
/bin/bash -O extglob -c "your command to run"Set Shell to be Bash with Extended Globbing in Docker¶
:::bash
SHELL ["/bin/bash", "-O", "extglob", "-c"]