Created
June 5, 2018 00:19
-
-
Save dmnugent80/ba0bc728c26d14db6c1ba04d0d3cbe61 to your computer and use it in GitHub Desktop.
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
export ANDROID_HOME="$HOME/android-sdk-macosx" | |
export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools | |
export ANDROID_NDK=/usr/local/Cellar/android-ndk/r10e | |
export PATH="$HOME/.rbenv/bin:$PATH" | |
eval "$(rbenv init -)" | |
# reloads the prompt, usefull to take new modifications into account | |
alias reload="source ~/.bash_profile" | |
alias pull="git smart-pull" | |
alias push="git push origin master" | |
alias log="adb logcat -v time" | |
alias logd="adb logcat -v time | egrep '<>'" | |
alias cd..='cd ../' # Go back 1 directory level (for fast typers) | |
alias ..='cd ../' # Go back 1 directory level | |
alias ...='cd ../../' # Go back 2 directory levels | |
alias .3='cd ../../../' # Go back 3 directory levels | |
alias .4='cd ../../../../' # Go back 4 directory levels | |
alias .5='cd ../../../../../' # Go back 5 directory levels | |
alias .6='cd ../../../../../../' # Go back 6 directory levels | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
.bash_profile is now .zprofile in catalina