Skip to content

Instantly share code, notes, and snippets.

@liwh
Created November 19, 2010 02:20
Show Gist options
  • Save liwh/706044 to your computer and use it in GitHub Desktop.
Save liwh/706044 to your computer and use it in GitHub Desktop.
输入历史使用最多的10条命令
history | awk {'print $2'} | sort | uniq -c | sort -k1 -rn | head
liweihui@desktop:~$ history | awk {'print $2'} | sort | uniq -c | sort -k1 -rn | head
85 cd
77 git
74 vim
68 ls
22 rm
20 mv
14 ruby
13 spec
13 history
10 sudo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment