Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 196 Bytes

19.md

File metadata and controls

7 lines (6 loc) · 196 Bytes

题目要求

写一个shell脚本来看看你使用最多的命令是哪些,列出你最常用的命令top10。

参考答案

cat ~/.bash_history |sort |uniq -c |sort -nr |head