grep is a tool used to print lines matching a pattern.
For your query just execture these line:
grep -r "total_count" file_name
It will print all the line inside file_name which contains the pattern "total_count"
For more info regarding grep do a < man grep >