With grep, I can find a word within 50 files in a local folder, i.e.:
grep -i "hello" *.html
But how can I find files that contain TWO words? Example: I would like to find all files, that contain Word "hello" AND word "peter". How can I combine two grep's?