I am trying to use find to look for files that contain a specific keyword. To my understanding, find takes in a file not a directory (that's why it is giving me error). So is there a way i can go through each sub-directories and look into each and every file to execute the find command so that I can get the result of all files that contains the given keyword? (Much like grep)
So far i got this: find \S "keyword" "directory\ *"
Error i am getting:
Access denied - Directory name
Access denied - Directory name
. . .
Anyone give me a hint? I am current using window 7 right now.