#!/bin/bash

grep "23/Apr/2020" nowcoder.txt | awk '{a[$1]+=1}END{for(x in a) print a[x],x}' | sort -r