I would like to find the files containing specific string under linux. I tried something like but could not succeed:
find . -name *.txt | egrep mystring
|
feedback
|
|
Here you are sending the file names (output of the Here are a couple of alternatives:
or even better
Check the find command help to check what the single arguments do. | |||||||||||
feedback
|
|
try:
There are two problems with your version: Firstly,
your
Secondly, | |||||
feedback
|
That will not work as Instead, you can use
| |||
|
feedback
|
|
Here's an example that will return the file paths of a all
| |||
|
feedback
|
|
there's a recursive option from egrep you can use
| |||||
feedback
|
|
If you only want the filenames:
If you want filenames and matches:
| |||
|
feedback
|