Show pageOld revisionsBacklinksExport to PDFBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Search for files with specific text in them ====== <code bash |Linux shell>find /var/www -type f -exec grep -l '/sync-clients/' {} \;</code> This will output all files with the specified string. The path in example is /var/www, and string we search for is /sync-clients/ <code bash |Linux shell>grep -iRl 'text' .</code> * -i > ignore caps * -R > recursive * -l > Display filename instead of text * 'text' > text to search * . > location to start in linux/shell_commands/string_search.txt Last modified: 2019/10/31 09:05by 127.0.0.1