Last active
August 29, 2015 13:57
-
-
Save mudpuddle/9688707 to your computer and use it in GitHub Desktop.
.bash stuff
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
### Android SDK | |
export PATH=$PATH:/Users/jwegner/Library/Developer/Xamarin/android-sdk-mac_x86/platform-tools:/Users/jwegner/Library/Developer/Xamarin/android-sdk-mac_x86/tools | |
### Postgres | |
export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/9.3/bin | |
alias ll='ls -lahG' | |
alias gitlog='git log --pretty=format:"%h %s" --graph' | |
alias code='cd /Users/jwegner/jesse/code; ls' | |
alias trimble='cd /Users/jwegner/jesse/trimble; ls' | |
alias pyserver='python -m SimpleHTTPServer ' | |
alias copypath='echo -n $PWD|pbcopy|echo "...current path copied to clipboard"' | |
alias xamarin='open -n /Applications/Xamarin\ Studio.app/' | |
### Added by the Heroku Toolbelt | |
export PATH="/usr/local/heroku/bin:$PATH" | |
### Environment variables | |
export DATABASE_URL=postgres://$(whoami)@localhost/$(whoami) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment