想看看你最常用的10个命令是什么呢?
可以使用这个命令来找到结果:
history | awk '{print $2}' | awk 'BEGIN {FS="|"} {print $1}'|sort|uniq -c | sort -n | tail | sort -nr
这个命令也可以的:
history | awk '{print $2}' | awk 'BEGIN {FS="|"} {print $1}'|sort|uniq -c | sort -rn | head -10
我的结果:
114 g++
105 ls
48 cd
26 ping
21 sudo
20 exit
19 gfortran
17 nano
15 ssh
14 cp
参考:
http://koke.amedias.org/articles/2007/06/11/my-top-10-commands/
发表回复