Today, I learned how to filter a specific string inside files with command find
.
find ./ -type f | xargs grep -Hn "abc"
Example notes:
abc
: string that I want to find
./
: path where to search
Today, I learned how to filter a specific string inside files with command find
.
find ./ -type f | xargs grep -Hn "abc"
Example notes:
abc
: string that I want to find
./
: path where to search
For further actions, you may consider blocking this person and/or reporting abuse
Cesar Aguirre -
H A R S H H A A -
Bojan Jagetic -
Oliver Bennet -
Top comments (0)