#!/usr/bin/env sh awk -F " " '{print $1}' nowcoder.txt | sort | uniq -c | sort -r | awk -F " " '{if($1>3){print $1,$2}}'