How to make a recursive grep to find the string ‘acmee’ in all files of current and sub-directories ?
For this you can use linux cmd line :

find . -type f -print -follow | xargs grep acmee

or

find . -type f -print -follow | xargs -0 egrep acmee