grep through several files
By adding option -H to the grep command, the filename will be output together with the matching line:
grep -i -H TEXT_TO_SEARCH_FOR
-i turns on ignore case.
personal knowledgebase
By adding option -H to the grep command, the filename will be output together with the matching line:
grep -i -H TEXT_TO_SEARCH_FOR
-i turns on ignore case.