Last active
August 29, 2015 14:05
-
-
Save ionatan-israel/717e96a59be0b0e58b9f to your computer and use it in GitHub Desktop.
Algunos alias útiles.
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
export PIP_DOWNLOAD_CACHE=$HOME/.pip_download_cache | |
export WORKON_HOME=$HOME/.virtualenvs | |
source /usr/local/bin/virtualenvwrapper.sh | |
alias open='thunar' | |
alias gb='git branch' | |
alias gc='git commit -m' | |
alias gf='git diff' | |
alias go='git checkout' | |
alias gr='git rm' | |
alias gR='git rm -r' | |
alias gs='git status' | |
# buscar cadena en archivos python recursivamente | |
alias gpy="grep -rn --include \*.py" | |
# buscar cadena en archivos html recursivamente | |
alias ghtml="grep -rn --include \*.html" | |
# buscar cadena en archivos css recursivamente | |
alias gcss="grep -rn --include \*.css" | |
alias afl="sudo less /var/log/auth.log | grep 'Failed password'" | |
export FILE_SETTINGS="dev_jr" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment