思路分析

查看文件|输出第二列的内容|排序|统计出现的次数|排序|去除出现1次的元素

cat nowcoder.txt | awk '{print $2}' | sort | uniq -c | sort | grep -v 1