Share icon

Fastest and efficient way is to use grep command

For search in a file :

grep "wordtofind" config.php

For search the word and get list of files form current directry 

grep -l "wordtofind" *

For search the word recursively from all the subfolders:

grep -r "wordtofind" *

or to read Human readable format 

grep -r -H "wordtofind" *

Thanks 

Add new comment

Plain text

  • No HTML tags allowed.
  • Lines and paragraphs break automatically.
  • Web page addresses and email addresses turn into links automatically.