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
Top comments (0)