Use an array
awk '{count[$3]++} END {for (word in count) print word, count[word]}' file
If you want “block” specifically: END {print count["BLOCK"]}
Use an array
awk '{count[$3]++} END {for (word in count) print word, count[word]}' file
If you want “block” specifically: END {print count["BLOCK"]}