I'm using bash under Ubuntu.
Currently this works well for the current directory:
catdoc *.doc | grep "specificword"
But I have lots of subdirectories with .doc files.
How can I search for, let's say, "specificword" recursively?
feedback
|
|
Use
This will also output the file name:
(Normally I would use | |||||||||
feedback
|
|
Grep should find binary matches with:
| |||
|
feedback
|