/** * About Java, php, Linux, OpenSource, SOA, .... * This work is licensed under a (CC BY 3.0) ;-) **/
There is no simple approach in UNIX / Linux to find a string in the files recursively. Here is the command that I often used and you can use
find . -type f -exec grep "string to find" {} \; -print
No comments:
Post a Comment