写一个 bash 脚本以统计一个文本文件 words.txt 中每个单词出现的频率。
为了简单起见,你可以假设:
words.txt
只包括小写字母和' '
。每个单词只由小写字母组成。单词间由一个或多个空格字符分隔。
示例:
假设 words.txt
内容如下:
the day is sunny the the
the sunny is is
你的脚本应当输出(以词频降序排列):
the 4
is 3
sunny 2
day 1
解决思路
- 第一种
- 使用cat 打印words.txt
- 使用tr命令替换空格为换行符,方便计数
- 使用sort命令将文本文件的第一列以ASCLL码的次序排列sort参考
- 使用uniq命令计算重复出现的行列,如果重复出现及自加1uniq参考
- 第二种
第一种的第二步改成xargs命令,可将单行输入转成多行输出。xargs参考
代码
- 第一种
cat words.txt | tr -s ' ' '\n'|sort|uniq -c |sort -r|awk '{print $2" "$1}'
- 第二种
cat words.txt | xargs -n1 | sort | uniq -c | sort -rn | awk '{print $2,$1}'
效果