command:
find . -exec grep "KEYWORD" {} /dev/null \;
Benifit:
Instead of searching for a reference in each and every directory this command will help you find a file with a given reference across the directories.
find . -exec grep "KEYWORD" {} /dev/null \;
Benifit:
Instead of searching for a reference in each and every directory this command will help you find a file with a given reference across the directories.
No comments:
Post a Comment