跳转至

Shell笔记

通用 Shell 工具

# 词频统计
cat words.txt | tr --squeeze-repeats ' ' '\n' | sort | uniq --count | sort --reverse | awk '{print $2" "$1}'

# 打印第 10 行
cat file.txt | tail --lines=+10 | head --lines=1