When you run the find command on files you don't have permissions for, you get annoying "Permission denied" errors which clutter the output.
Wikipedia suggests the following fix:
If you're doing this as a user other than root, you might want to ignore permission denied (and any other) errors. Since errors are printed to stderr, they can be suppressed by redirecting the output to /dev/null. The following example shows how to do this in the bash shell:
find / -name "myfile" -type f -print 2>/dev/null
I know I can prepend things to a command, so I can alias ll to, for example, ls -lah. Can I set up an alias in .bash_profile to append 2>/dev/null to the end of any find command?