Question

I executed following command:

find . name "myfile.txt"

but this shows verbose information.

How to unshow this verbose ?

Était-ce utile?

La solution

Use following command

find . -name "myfile.txt" | grep myfile.txt
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top