couldn\'t find this on SO. I ran the following command in the terminal:
>> grep -Rl \"curl\" ./
and this displays the list of files wher
Pipe the result to wc using the -l (line count) switch:
-l
grep -Rl "curl" ./ | wc -l