macOS JAVA_HOMEのPATHを設定する方法
環境
mac OS
操作方法
1.PATHの設定を行います
$ echo 'export JAVA_HOME=<path>' >> ~/.bash_profile $ echo 'export PATH=$JAVA_HOME/bin:$PATH>' >> ~/.bash_profile
2.「.bash_profile」の更新を行います
$ source ~/.bash_profile
3.PATHが反映されてることを確認する
$ echo $JAVA_HOME $ echo $PATH