grep -Eo "\[.+\]" "./nowcoder.txt" | awk -F ':|+|/' '{list[$4":"$5]++} END{for(i in list){print list[i] " " i}}' | sort -r

不需要要grep的,有点蠢