globs
Globs, or glob patterns, are patterns used for filename matching in many operating systems and programming environments. They provide a simple wildcard syntax for selecting multiple files or paths without regular expressions. Globbing is common in Unix shells, Windows, and various programming languages that manipulate files.
The core elements of glob patterns are wildcards such as the asterisk, question mark, and character classes.
Examples include ls *.txt to list text files in the current directory, or /logs/**/*.log to recursively locate
Glob patterns differ from regular expressions in that they are designed specifically for simple filename matching
Common environments include Unix shells (Bash, Zsh), Windows command prompts and PowerShell, Python's glob module, and