Filename Expansion (6.5 p170)
Examples:
ls *.c
rm file[1-6].?
cd ~/bin
ls ~culhane
* Matches any string (including null)
? Matches any single character
[...] Matches any one of the enclosed characters
[.-.] Matches any character lexically between the pair
[!...] Matches any character not enclosed