Thursday, 10 January 2019

Grep for a keyword across directories in unix EBS 11i/R12

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.

No comments:

Post a Comment