BASH: grep - hide filenames without matching patterns

Hello , If you want to get count for pattern matchings in a file then you would use " -c" flag like we all do. It will print matching files with count in the ending and non matching files with count as :0 in the ending. If you are doing this for 100 files your screen will flood with matching and non-matching details. To get clear picture of only matching, if you can pipe( | ) your result into grep...