Submitted by captaindav on Mon, 2010-04-12 13:39
The basic syntax of the find command is:
$ find . -name foo.bar
This will recurssively search starting in the current directory (.), and all subdirectories of the current directory, for the file named <filename>.
To filter out "Permission Denied" messages, use:
$ find . -name foo.bar -print 2>/dev/null