Asked by      Sumit Talwar    ·  ·   2 answers  
 You can use grep -ilR:
grep -Ril "text-to-find-here" /directory-path
- 
istands for ignore case (optional in your case).
- 
Rstands for recursive.
- 
lstands for "show the file name, not the result itself".
0
   0 
  
  
  
  
  
  
  
  
  
 