find result

When searching for some files which match some specific criteria with find from the root directory, I got a listing of a bunch of files that say "Permission Denied". How can do my search and not show the files that I don't have the permission to list?

Thanks,

find / <normal find options>   2>/dev/null

Append the following to your command to hide all error messages:

 2>/dev/null

It works. Thanks