How to hide the verbose of "find" command in ubuntu?

linux, shell, ubuntu-13.04

Solution

Use following command

find . -name "myfile.txt" | grep myfile.txt

Problem

I executed following command: `find . name "myfile.txt"` but this shows verbose information. How to unshow this verbose ?

Original source