11 · The Command Line

Wildcards

Match many files with a pattern

Symbols that stand in for characters so one command can hit many files — “*” means “any characters.” Also called globbing.

Concrete example

“rm *.tmp” deletes every file ending in .tmp; “ls src/*.js” lists all the JS files in src.