#!/bin/bash
cat nowcoder.txt | cut -d" " -f 2 | sort | uniq -c | awk '{if($1>1) print $1,$2}' |sort -n