Created
June 5, 2012 17:26
-
-
Save armoucar/2876387 to your computer and use it in GitHub Desktop.
profile
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
#shortcut | |
alias ..="cd .." | |
alias ...="cd ../.." | |
alias cd..="cd .." | |
alias l="ls -lhG" | |
alias ll="ls -lahG" | |
alias eb="vim ~/.bashrc" | |
alias sb="source ~/.bashrc" | |
alias cb="cat ~/.bashrc | grep \"alias \"" | |
alias eg="vim ~/.gitconfig" | |
alias em="vim ~/.m2/settings.xml" | |
alias ev="vim ~/.vimrc" | |
alias @="cd ~" | |
alias downloads="cd ~/Downloads" | |
alias desenv="cd ~/desenvolvimento" | |
alias tomcat="cd ~/desenvolvimento/tomcat-6.0.35" | |
alias opensource="cd ~/desenvolvimento/workspaces/opensource" | |
alias bancowork="cd ~/desenvolvimento/workspaces/bancowork" | |
alias jquery="curl http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js >> jquery.min.js ; | |
curl https://raw.github.com/gist/2874898/9bb53168def73c80fda4c4ce2383409cbda82518/index.html >> index.html ; | |
> test.js ;" | |
# ssh | |
alias wagner="ssh [email protected]" | |
alias 67="ssh [email protected]" | |
#env vars | |
export http_proxy=** | |
export https_proxy=** | |
export M2_HOME="$HOME/desenvolvimento/apache-maven-3.0.4" | |
export ANDROID_HOME="$HOME/desenvolvimento/android-sdk-linux" | |
export PS1='\w `~/.rvm/bin/rvm-prompt i v` `git branch 2> /dev/null | grep -e ^* | sed -E s/^\\\\\*\ \(.+\)$/\(\\\\\1\)\ /`\n\[\033[37m\]$\[\033[00m\] ' | |
export downloads="~/Downloads" | |
export desenv="~/desenvolvimento" | |
export APPENGINE_SDK_HOME="$HOME/desenvolvimento/appengine-java-sdk-1.6.6" | |
PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting | |
PATH=$PATH:$M2_HOME/bin | |
PATH=$PATH:$ANDROID_HOME/platform-tools | |
PATH=$PATH:$ANDROID_HOME/tools | |
source /home/c1233611/.rvm/scripts/rvm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment