#!/bin/bash

 awk '{print $2}' nowcoder.txt | sort -r | uniq -c | awk '$1!=1' |sort

信息只与第二列有关,很自然用awk筛出来,排序计重,排除第一列(重复次数)为1的行,最后字母排序即可