Skip to content

Instantly share code, notes, and snippets.

@twinkledj
twinkledj / 0_tldr.zsh
Created December 9, 2023 00:29 — forked from roalcantara/0_tldr.zsh
Glob (globbing)
## TL;DR
setopt extendedglob
ls *(<tab> # to get help regarding globbing
rm ../debianpackage(.) # remove files only
ls -d *(/) # list directories only
ls /etc/*(@) # list symlinks only
ls -l *.(png|jpg|gif) # list pictures only
ls *(*) # list executables only
ls /etc/**/zsh # which directories contain 'zsh'?