1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-24 17:00:47 +00:00

Adding zsh_stats function to show you which commands you run the most.

This commit is contained in:
Robby Russell 2009-08-31 15:00:15 -07:00
parent a26cb28de4
commit 6fd7da65a3

View file

@ -22,4 +22,8 @@ function preexec {
function remote_console() {
/usr/bin/env ssh $1 "( cd $2 && ruby script/console production )"
}
function zsh_stats() {
history | awk '{print $2}' | sort | uniq -c | sort -rn | head
}