Try:
find / -type f -exec grep -H 'text-to-find-here' {} \;
which will search all file systems, because /
is the root folder.
For home folder use:
find ~/ -type f -exec grep -H 'text-to-find-here' {} \;
For current folder use:
find ./ -type f -exec grep -H 'text-to-find-here' {} \;