How to find files excluding symbolic links?

find, linux, symlink

Solution

Check the man page again ;) It's:

find /path/to/files -type f

`type f` searches for regular files only - excluding symbolic links.

Problem

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` command for that. How shall I do ?

Original source