利用awk 的数组对域名统计,用sort排序
awk -F'/' '{a[$3]++}END{for(i in a) print a[i],i}' nowcoder.txt |sort -ru