Skip to content

Instantly share code, notes, and snippets.

@empty
Created May 21, 2012 02:30
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 empty/2760311 to your computer and use it in GitHub Desktop.
Save empty/2760311 to your computer and use it in GitHub Desktop.
alias rm_py='find . \( -name "*.pyc" -o -name "*.pyo" \) -exec rm -v {} \;'
alias rm_bak='find . \( -name "*.bak" \) -exec rm -v {} \;'
alias rm_cover='find . \( -name "*,cover" \) -exec rm -v {} \;'
alias rm_un='find . \( -name "*.un~" \) -exec rm -v {} \;'
alias mate='mvim'
alias ls='ls -G'
alias ll='ls -hl'
alias mkvirtualenv='mkvirtualenv --no-site-packages --distribute'
alias unmigrated='python manage.py migrate --list | grep -v "\*"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment