[Linux Command] Do fully-text search in Linux environment by using “Find”
I want to search the string, “function detail” in the php open source code(files).
The command is:
find ./ -name "*.php" -exec grep -l 'function detail' {} \;
Then it will list all files which contain the string.
cool, i love it!!