#!/usr/local/bin/bash
grep ': [0-9][0-9]*$' $1 | awk -F: '{x[$1] += $2}END{for (i in x) print i ": " x[i]}' | sort  +1 -nr
