How to search anything inside all the files?
find . -type f -exec grep -l "20.198.94.70" {} +
find . -type f -exec grep -l "Test" {} +
find . | xargs grep 'http://abwasiq.com'
find . -type f -exec grep -l "20.198.94.70" {} +
find . -type f -exec grep -l "Test" {} +
find . | xargs grep 'http://abwasiq.com'
No comments:
Post a Comment