I use the following command to find files with a given string:
find /var/www/http -type f | xargs grep -iR "STRING1"
But how can I find files which include "STRING1" OR "STRING2" OR "STRING3"?
This code doesn't work:
find /var/www/http -type f | xargs grep -iR "STRING1" | xargs grep -iR "STRING2"