2025-03-20
linux相关
00

目录

单词统计

单词统计

  • 完整命令
sh
cat words.txt | tr -s ' ' '\n' | sort | uniq -c | sort -r | awk '{ print $2, $1 }'
  • 步骤拆解
  1. 压缩文件中的多个空格为一个空格,并替换为换行符
sh
cat words.txt | tr -s ' ' '\n' day is is is sunny sunny the the the the
  1. 排序并统计单词的频次
sh
cat Words.txt| tr -s ' ' '\n' | sort | uniq -c 1 day 3 is 2 sunny 4 the
  1. 重新排序,并输出
sh
cat Words.txt| tr -s ' ' '\n' | sort | uniq -c | sort -r | awk '{print $2, $1}'

本文作者:曹子昂

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!

评论
  • 按正序
  • 按倒序
  • 按热度
Powered by Waline v2.14.8