📜  bash 计算文件中的重复行数 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:34.465000             🧑  作者: Mango

代码示例2
# Basic syntax:
sort input_file | uniq -c 
# Sort the file first because uniq requires a sorted file to work