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
This works for me:
find -H . -maxdepth 1 -type f
Actually, don't really need the -H