programming faqs interview questions tech technical educational freshers guide preparation interviews hr telephonic
try another color:
try another fontsize: 60% 70% 80% 90%
Programming FAQs

how do i search a directory and all its content for a text matching a specific pattern

using grep command we can

using grep command we can accomplish this
#grep -ri {search string} {folder name}

# grep -ri programmingfaqs myproject

it searches the string "programmingfaqs" in myproject folder and all its subfolders and files