Question

I executed following command:

find . name "myfile.txt"

but this shows verbose information.

How to unshow this verbose ?

Was it helpful?

Solution

Use following command

find . -name "myfile.txt" | grep myfile.txt
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top