Created
April 10, 2013 16:45
-
-
Save BrianHicks/5356328 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ history | awk '{a[$2]++ } END{for(i in a){print a[i] " " i}}' | sort -rn | head -n 20 | |
2502 git # Developing - everything is managed with git | |
1046 t # Taskwarrior alias | |
589 vim # I use vim constantly | |
303 rm # Sometimes files just need to go | |
269 cd # moving around | |
258 ./manage.py # Django management | |
253 pip # installing/uninstalling/freezing python packages | |
240 curl # useful for developing APIs | |
235 mv # ... and sometimes files need to move | |
198 ls # this is surprisingly high, I use tab completion a lot | |
196 cat # previewing files | |
179 mkdir # more file management | |
179 ack # like find + grep but with more awesomeness | |
175 ssh # salt has entered my life, and I've been doing a lot of this stuff | |
158 pb # alias for "pythonbrew" | |
153 python # getting into the shell is useful | |
123 brew # package management on OSX | |
118 heroku # random one-off sites run for free | |
109 f # aliased to "git flow feature" | |
107 vagrant # again, useful for salt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment