Linux - How to find given string in all files, Find given string in all files with given name
How to find given string in all files
Find string from all files.
find . -name "*.html" -exec grep -il 'string' {} \;
The above command will find the given string in all files with given name or extension.The topic on Linux - How to find given string in all files is posted by - Math
Hope you have enjoyed, Linux - How to find given string in all filesThanks for your time