This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## 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'? |