O Bash 4 tem **
se você shopt -s globstar
globstar If set, the pattern ** used in a filename expansion con‐ text will match a files and zero or more directories and subdirectories. If the pattern is followed by a /, only directories and subdirectories match.
Para localizar arquivos que são links simbólicos para arquivos (em vez de diretórios):
find -maxdepth 1 -xtype f -type l -ls
Para encontrar links simbólicos quebrados:
find -L -type l