Recursive grep vs find / -type f -exec grep {} \; Which is more efficient/faster? - Unix & Linux
Which is more efficient for finding which files in an entire filesystem contain a string: recursive grep or find with grep in an exec statement? I assume find would be more efficient ......