Created
November 17, 2014 17:55
-
-
Save oscargicast/82d4f7f347b0a8efe0ac to your computer and use it in GitHub Desktop.
.zsh_aliases
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
# play sound after command | |
alias s='aplay -q ~/.zsh/sounds/done.wav 2>/dev/null' | |
# virtualenv3 | |
alias virtualenv3='virtualenv --python=python3' | |
# Django | |
alias pm='python manage.py' | |
alias pmr='python manage.py runserver' | |
alias pms='python manage.py shell' | |
alias pmt='python manage.py test' | |
alias pmsy='python manage.py syncdb --all --noinput' | |
# Redis | |
alias redis-server='~/redis/src/redis-server' | |
alias redis-cli='~/redis/src/redis-cli' | |
alias redis-sentinel='~/redis/src/redis-sentinel' | |
alias redis-benchmark='~/redis/src/redis-benchmark' | |
alias redis-check-aof='~/redis/src/redis-check-aof' | |
alias redis-check-dump='~/redis/src/redis-check-dump' | |
# Android Studio | |
alias android='studio.sh' | |
alias adb=$HOME/android-sdk/platform-tools/adb | |
# Eagle | |
alias eagle='eagle' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment