Files
dotfiles/bash/.bashrc.d/.Trash/v1/.bashrc_-_glob
anon a0546e929c .
2023-10-25 19:00:04 +02:00

7 lines
396 B
Plaintext
Executable File

shopt -s dotglob # With this set, the glob matches hidden files (".*") by default,
# but not the . or .. links.
shopt -s globstar # If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
shopt -s extglob # Enable additional globs. Resulting in what is effectively a Regex
# language builtin to Bash.