如何使用bash统计单词个数

模拟数据。新建example.txt,写入以下文字

If you often volunteer in a shelter (animal or human),you know how it feels to help those in need. You see many animals and people suffer from starvation,diseases,and loneliness. You see them die. Your heart is bleeding and you cannot stop crying,but you get up and keep helping the others. You stay emotionally strong and that strength is growing until you stop caring. Why are doctors so emotionally strong?

Finally,remember that life is jam-packed with ups and downs. The obstacles and problems are a part of your life. Can handle and solve them? Perfect. Can’t do it? It is totally normal. After all,you are just human. We learn a lot more useful things from failures and misfortunes than we do from success and happiness.

输入以下命令,出现结果:

cat example.txt | tr ' ' '\n' | sort | uniq -c
  • cat example.txt 输出内容
  • tr ' ' '\n' 将空格替换成换行符
  • sort 排序(需要先进行排序,否则相同行中间的行会被忽略)
  • uniq -c 去重并统计

相关文章

普通模式 >G 增加当前行到文档末尾处的缩紧层级 $ 移动到本行的末尾 . 相当于一个...
原文连接: https://spacevim.org/cn/layers/lang/elixir/ 模块简介 功能特性 启用模块 快捷键 语言专属...
原文连接: https://spacevim.org/cn/layers/lang/dart/ 模块简介 功能特性 依赖安装及启用模块 启用模...
 =   赋值操作符,可以用于算术和字符串赋值 +        加法计算     -        减法运算...
1.根据包名来查看指定的APP指定数据 adb shell "top | grep com.xxx.xxx" 由于这样打印出来的数...
ctrl+F 向下翻页 ctrl+B 向下翻页 u 取消最近一次操作 U 取消当前行的操作 ZZ 保存当前内容并退出 gg 跳...