# 檢視歷史命令

## 使用history + awk 過濾出最常使用的歷史命令

history | awk 'BEGIN {FS="\[ \t]+|\\|"} {print $3}' | sort | uniq -c | sort -nr | head
