I want to find files in Linux that follow a certain pattern but I am not interested in symbolic links.
There doesn\'t seem to be an option to the find comm
find
! -type l
For example, if you want to search all regular files in /usr/bin, excluding symlink:
find /usr/bin/ \! -type l