Skip to content

Instantly share code, notes, and snippets.

@mmalecki
Forked from csanz/gist:1545189
Created January 1, 2012 11:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmalecki/1547110 to your computer and use it in GitHub Desktop.
Save mmalecki/1547110 to your computer and use it in GitHub Desktop.
My Hacker History
history|awk '{print $2}'|awk 'BEGIN {FS="|"} {print $1}'|./whichStdin|sort|uniq -c|sort -rn
1815 git
892 mvim
508 npm
477 node
475 ls
383 rm
277 cat
266 jitsu
257 fg
244 cd
232 curl
227 vows
140 grep
137 ack
129 mkdir
123 ssh
112 sudo
107 cp
71 mv
63 blacksmith
59 echo
56 man
47 killall
44 tar
42 make
39 hub
37 pbcopy
37 brew
35 ps
32 nc
32 bundle
31 luvit
28 which
27 scp
26 top
25 rvm
24 wscat
22 forever
17 pip
17 kill
16 md5
16 ant
15 tap
15 gem
15 chmod
14 hash
13 vagrant
13 python
13 clear
12 time
12 pbpaste
12 http-server
12 adb
10 vim
10 touch
10 ping
10 dirname
10 android
9 ruby
9 nodeunit
9 dig
8 thor
8 pg_ctl
8 ngrep
8 lsof
8 /usr/local/sbin/rabbitmqctl
7 say
7 perl
7 ln
7 hookio
7 find
7 cpan
6 traceroute
6 open
6 flatiron
5 sleep
5 rsync
5 dd
5 cassandra
5 /usr/local/sbin/rabbitmq-server
5 /usr/local/sbin/rabbitmq-plugins
5 /usr/local/bin/dropdb
4 watch
4 rake
4 rails
4 pwd
4 psql
4 postgres
4 irssi
4 hg
4 easy_install
4 diskutil
4 chsh
4 alias
4 /usr/local/bin/createdb
3 whois
3 ulimit
3 replicate
3 node-waf
3 memcached
3 irb
3 host
3 createdb
3 /usr/local/bin/psql
3 ./whichStdin
2 ws-proxy
2 wget
2 tput
2 svn
2 screen
2 route
2 markdown
2 java
2 initdb
2 http-console
2 gcc
2 foreman
2 diff
2 couchapp
2 cassandra-cli
2 bash
2 /usr/local/sbin/ngircd
2 /usr/bin/time
1 who
1 whereis
1 wc
1 wall
1 w
1 virtualenv
1 uptime
1 test
1 telnet
1 tcpdump
1 tail
1 shasum5.12
1 rvim
1 resque
1 require-analyzer
1 redis-server
1 pic
1 pg_config
1 patch
1 optipng
1 node-inspector
1 nano
1 mongodump
1 mongo
1 jshint
1 js
1 ipconfig
1 expresso
1 erl
1 env
1 efix
1 dropdb
1 df
1 dev/javascript/jitsu/bin/jitsu
1 cpp
1 couchdb
1 bc
1 base64
1 ansispan
1 /usr/local/bin/postgres
1 /usr/local/bin/initdb
1 .bin/hub
#!/bin/sh
# I use zsh so I had to write this little script to strip directories (zsh
# allows cd'ing into a directory by simply typing it's name).
while read app; do
which "$app" > /dev/null 2>&1
[ $? -eq 0 ] && echo $app
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment