Syntax: find ./ -name elm -print Discription: Executes the find command at the working directory and recursivly searches all subdirectories for a file named "elm" and then prints the output. A more useful version of this command is as follows: Find ./ |grep 1234567 Discription: Executes the find command at the working directory and recursivly searches all subdirectories for a file named "1234567" and then outputs to the screen the grep information on that file.