Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

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

:::bash
shopt -s extglob

Or 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"]

References

Bash Extended Globbing