Finding aliases and symbolic linksEdit

To find symbolic links in the current directory:

find . -type l

To find macOS "alias" links on the current volume:

mdfind kMDItemKind=Alias

Or in the current directory:

mdfind -onlyin . kMDItemKind=Alias