Search code examples
linuxshellubuntu-13.04

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


I executed following command:

find . name "myfile.txt"

but this shows verbose information.

How to unshow this verbose ?


Solution

  • Use following command

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