Recursive grep vs find / -type f -exec grep {} \; Which is more efficient/faster? - Unix & Linux
Why would grep bomb out? At least with GNU grep if you give a path with trailing / and use -R it'll simply iterate through the directories. The shell isn't going to expand anything unless you give shell-globs. So in the given example (/*) only the content...