先发我的做法

awk '{print $2}' nowcoder.txt | sort | uniq -cd | sort -n
  • 提取某列:使用 awk 命令
  • 查看重复频率:sort + uniq