Created
June 24, 2015 15:13
-
-
Save danhyun/b23dd15d94fecae23a9c to your computer and use it in GitHub Desktop.
bashrc
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 JDK6="/c/Program Files/Java/jdk1.6.0_29" | |
export JDK7="/c/Program Files/Java/jdk1.7.0_71" | |
export JDK8="/c/Program Files/Java/jdk1.8.0_25" | |
export OPENJDK8="/c/Program Files/Java/zulu1.8.0_25-8.4.0.1-win64" | |
alias java6='export JAVA_HOME="$JDK6";export PATH="$JDK6/bin":$PATH' | |
alias java7='export JAVA_HOME="$JDK7";export PATH="$JDK7/bin":$PATH' | |
alias java8='export JAVA_HOME="$JDK8";export PATH="$JDK8/bin":$PATH' | |
alias zulujava8='export JAVA_HOME="$OPENJDK8";export PATH="$OPENJDK8/bin":$PATH' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment