#!/bin/bash
awk '{print $2}' nowcoder.txt | sort | uniq -c | awk '$1>1 {print $1,$2}' | sort