去除重复行
sort file |uniq

 
查找非重复行
sort file |uniq -u
 
查找重复行
sort file |uniq -d
 
统计
sort file | uniq -c
 
转自
http://www.study365.org/blog/3.html

相关文章:

  • 2022-01-13
  • 2021-08-05
  • 2021-12-02
  • 2021-07-19
  • 2021-09-29
猜你喜欢
  • 2022-02-12
  • 2021-07-18
  • 2021-09-10
  • 2021-12-25
  • 2022-01-21
  • 2021-08-12
  • 2022-01-31
相关资源
相似解决方案