Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 355 Bytes

58.md

File metadata and controls

15 lines (13 loc) · 355 Bytes

题目要求

将文件内所有的单词的重复次数计算出来,只需要列出重复次数最多的10个单词。

参考答案

#!/bin/bash
#这个脚本用来找出重复的单词
#作者:猿课-阿铭 www.apelearn.com
#日期:2018-12-02

for w in `sed 's/[^a-zA-Z]/ /g' $1`
do
    echo $w
done |sort |uniq -c |sort -nr|head