cd home/dir
grep -r -l -i "1896\.345" .
Estou tentando localizar um arquivo que (deve) conter a string "1896.345", em algum lugar em / home / dir /.
Alguma idéia de como eu posso fazer isso? Obrigado
cd home/dir
grep -r -l -i "1896\.345" .
Use find
e xargs
:
find /home/dir -type f -print0 | xargs -0 grep -l 1896.345