How can I use grep and/or find to find all files which have all of specfied words?
So something like
grep -R -words 'Quick', 'Lazy', 'Jumped' /
would return all files on system with words Quick, Lazy and Jumped.
Is there any support or should I be looking to write my own script?