linux:shell_commands:string_search

Search for files with specific text in them

|Linux shell
find /var/www -type f -exec grep -l '/sync-clients/' {} \;

This will output all files with the specified string. The path in example is /var/www, and string we search for is /sync-clients/

|Linux shell
grep -iRl 'text' .
  • -i > ignore caps
  • -R > recursive
  • -l > Display filename instead of text
  • 'text' > text to search
  • . > location to start in
Enter your comment:
82 +7​ = 
 
  • linux/shell_commands/string_search.txt
  • Last modified: 2019/10/31 09:05
  • by 127.0.0.1