Last active
August 29, 2015 13:58
-
-
Save dhargitai/10252677 to your computer and use it in GitHub Desktop.
Tools for smart (and lazy) people
This file contains 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
alias stopallvms='VBoxManage list runningvms | cut -d " " -f 1 | xargs -J % VBoxManage controlvm % savestate' | |
alias findinphp='find . -type f -name "*.php" | xargs grep -n' | |
alias what-did-i-work-on-recently='git log --abbrev-commit --date=short -100 --pretty=format:'%ae %ad %Cred%h%Creset -%C(yellow)%d%Creset %C(bold blue)%s%Creset' | grep "<YOUR-GITHUB-EMAIL>" | grep -oE "\d{4}.*"' | |
alias vless='vim -u /usr/share/vim/vim73/macros/less.vim' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment