Extended Globbing in Bash

Posted on Jun 04, 2022 in Computer Science

Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.

Fish Shell is preferred to Bash/Zsh. The following content is for Bash/Zsh only.

Enable Extended Globbing

shopt -s extglob

Or you can run bash with the option -O extglob.

/bin/bash -O extglob -c "your command to run"

Set Shell to be Bash with Extended Globbing in Docker

SHELL ["/bin/bash", "-O", "extglob", "-c"]

References

Bash Extended Globbing