What is the difference between these two commands:
wc `grep -l int *`
grep -l int * | wc
How does the output differ?
wc `grep -l int *`
This will give you count of words/lines/characters for each file containing string "int".
grep -l int * | wc`
This will give you count of words/lines/characters of the output generated by grep -l int *