I don’t normally do memes

But this one was geeky and interesting enough to be worth it:

$ history|awk '{a[$2]++} END{for(i in a){printf "%5d\t%s\n",a[i],i}}'|sort -rn|head
   75   cd
   64   ls
   34   ssh
   29   python
   21   rm
   21   hg
   20   svn
   18   man
   18   less
   17   screen

Comments

Brad Fults
April 10, 2008
#

From our sysadmin:

history | awk ‘{print $2}’ | sort | uniq -c | sort -rn | head

Doug
April 10, 2008
#

Interesting stuff.

Here’s mine:

~ $ history|awk ‘{a[$2]++} END{for(i in a){printf “%5dt%sn”,a[i],i}}’|sort -rn|head 132 svn 57 cd 36 ssh 34 rake 28 sudo 20 ruby 17 ./start.sh 16 mate 15 git 14 vim

Felix Sun
April 10, 2008
#

Here is mine

history | awk ‘{print $2}’ | sort | uniq -c | sort -rn | head
207 git
 55 ./script/server
 42 ssh
 36 cd
 25 cap
 15 sudo
 15 rm
 14 ./build.sh
 10 ls
 10 cp
Tom Printy
April 10, 2008
#

and mine:

191 ssh 74 sudo 38 ls 27 ping 23 exit 22 cd 19 vi 15 ps 13 kill 11 ./slttest.py

Henrik Lied
April 11, 2008
#

Cool meme! Here’s mine:

121   cd    
86   python
83   svn
40   ls
36   mate
22   /Domain/felles.ds.nrk.no/Users/n20929/Desktop/iPlus/MAC/DFU.command;
20   touch
12   /Domain/felles.ds.nrk.no/Users/n20929/Desktop/iPlus/MAC/iPlus.command;
 8   sudo
 7   ssh
Justin Lilly
April 11, 2008
#

I like it! It seems super accurate to boot. Here’s mine:

  120   ls
   68   cd
   63   ./manage.py
   29   sudo
   25   curl
   21   rm
   18   vi
   16   ssh
   16   git
   14   mate
Dan Previte
April 11, 2008
#

377 svn 159 ll 154 clear 137 cd 44 pwd 21 rm 16 grep 14 su 12 pecl 9 exit

Myles Braithwaite
April 11, 2008
#

$ history|awk ‘{a[$2]++} END{for(i in a){printf “%5dt%sn”,a[i],i}}’|sort -rn|head 105 ls 94 hg 83 mate 52 cd 44 python 15 ssh 13 vim 9 mkdir 9 cp 8 find

Scott Johnson
April 11, 2008
#

193 sudo 163 ll 90 vi 82 cd 70 less 48 screen 28 cat 23 nice 21 pygmentize 20 grep

sandro
April 11, 2008
#

Ah man, there is something wrong if your VCS isn’t at the top! I suppose having gvim in second (mine) could also mean something is wrong =).

Peter Pistorius
April 12, 2008
#

Here’s mine:

143 ls 131 cd 57 svn 32 sudo 29 python 19 pwd 17 ping 12 vi 7 rm 7 find

m0n5t3r
April 13, 2008
#

here:

iacobs@moria ~ $ history|awk ‘{a[$2]++} END{for(i in a){printf “%5d\t%s\n”,a[i],i}}’|sort -rn|head
  238   bzr
   82   cd
   40   ls
   26   ./manage.py
   20   rm
   10   vim
   10   less
   10   firefox
    8   mv
    7   mkdir
Peter Hellberg
April 15, 2008
#

My machine at work

141 svn
82  ls
72  cd
30  ssh
26  rake
21  sudo
17  mv
15  script/console
11  unzip
 8  thin
Condredge
April 16, 2008
#

Hmm… maybe I’m doing something wrong!? 285 apache2/bin/stop 285 apache2/bin/start 147 cd 113 more 63 ls 54 python2.4 14 rm 14 emacs 4 pwd 4 mv

nixusr
May 1, 2008
#

137-148-237-36:~ BLKHEARTS$ history|awk ‘{a[$2]++} END{for(i in a){printf “%5dt%sn”,a[i],i}}’|sort -rn|head 19 ssh 17 ls 16 locate 14 vi 12 cd 11 perl 8 ./mysql 6 ps 5 which 4 less

LAZY MBP

Add a comment

You may use Markdown syntax in your comment, but raw HTML will be removed. By posting a comment here, you are agreeing to the terms of my comment policy.