#!/bin/bash
while read -a line;do echo ${line[1]}; done < nowcoder.txt | sort | uniq -c | awk ' $1 > 1 {print $0}' | sort -n