Grep Issue
Description of Erratum
grep -nHR --include=*.module 'View site reports' modules
I am using the MINGW32 Git Bash command line tool in Windows Vista. The above command produces the following errors:
grep: invalid option -- R
grep: unrecognized option '--include=*.module'
Recommended Correction
To correct this issue I ran:
grep -nHr 'View site reports' modules
(note the lowercase r).
Hope this is helpful to somebody!