History meme

Well, everyone else is doing it... I only installed a week or two ago, so this probably doesn't say much (or maybe it does?):

$ history|awk '{a[$2]++ } END{for(i in a){print a[i] " " i}}'|sort -rn|head
74 make
60 ls
59 sudo
47 cd
33 svn
31 [censored]
30 git
23 vim
14 rm
13 grep

My work-pattern is to do my coding in anjuta (with the odd bits here and there in vim) and to have a terminal open that I build in, so that explains the high instance of 'make'... Not sure about the rest of it - sudo probably because I've had to edit a lot of config files/install a lot of packages... Interesting that for almost everyone else, 'cd' comes above 'ls'...

Thomas Thurman says:

I think most people these days don't use "ls"; they type the directory name and hit "tab" twice.

mike says:

And confirm with "y"? not so great...

iain says:

31 mplayer ~/.porn/*

ethana2 says:

You're funny.

896 sudo
896 apt-get
666 [censored]
7 cd
7 ls
3 other

michele says:

Interesting that for almost everyone else, 'cd' comes above 'ls'...


I have seen lots of people (even moderately experienced) that instead of:

ls a/b/c

do:

cd a
cd b
cd c
ls

Any comments?