Skip to content

Instantly share code, notes, and snippets.

View kenzic's full-sized avatar
🌀
A commit a day keeps the Dr. away

Chris McKenzie kenzic

🌀
A commit a day keeps the Dr. away
View GitHub Profile
export PATH="/usr/local/bin:/usr/local/sbin:$PATH"
# Extended pattern matching:
# ? Matches zero or one occurrence of the given patterns
# * Matches zero or more occurrences of the given patterns
# + Matches one or more occurrences of the given patterns
# @ Matches exactly one of the given patterns
# ! Matches anything except one of the given patterns
# example: Get a directory listing of all non PDF and PostScript files in the current directory
# ls -lad !(*.p@(df|s))