…beyond the man-pages:
find
- by text in file’s name
find . -name "my.file" -print by text in file’s content
find . -exec grep "4therecord" '{}' \; -print
A detailed explanation and more examples here.
…beyond the man-pages:
find
find . -name "my.file" -printby text in file’s contentfind . -exec grep "4therecord" '{}' \; -printA detailed explanation and more examples here.