Pergunta

I executed following command:

find . name "myfile.txt"

but this shows verbose information.

How to unshow this verbose ?

Foi útil?

Solução

Use following command

find . -name "myfile.txt" | grep myfile.txt
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top