Site Archives meme

History meme


$ history|awk ‘{a[$2]++ } END{for(i in a){print a[i] ” ” i}}’|sort -rn|head
368 cd
355 l
274 git
231 vi
131 u
130 q
101 find
94 time
86 grep
79 svn

Some clarifications:

“l” is an alias for “ls -lhA –color”
“u” is an alias for “cd ..”
“q” is an alias for “exit” (I also use CTRL-D for that)
“time” is there because I use “time make” to [...]