3

I executed following command:

find . name "myfile.txt"

but this shows verbose information.

How to unshow this verbose ?

user3181411
  • 135
  • 1
  • 5
  • 11

1 Answers1

15

Use following command

find . -name "myfile.txt" | grep myfile.txt
Rahul R Dhobi
  • 5,668
  • 1
  • 29
  • 38