Shell history command count
bash:
history | awk '{print $2}' | sort | uniq -c | sort -rn | head
zsh:
history -1000 | awk '{print $2}' | sort | uniq -c | sort -rn | head
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)
Mark James Adams http://raysend.com/mark/
history | awk '{print $2}' | sort | uniq -c | sort -rn | head
history -1000 | awk '{print $2}' | sort | uniq -c | sort -rn | head