PATH确认方法
$ echo $PATH
根据优先级先后顺序用:分割,因此可以复数指定
PATH设定方法(临时)
$ export PATH=$PATH:/usr/local/scala/bin
PATH设定方法(永久)
单个用户
上记临时方法的命令行,追加到home目录下的 .bash_profile文件的最后一行
全部用户
上记临时方法的命令行,追加到/etc/profile文件的最后一行
ps:这个文件是login的时候才生效的,因此需要马上生效的情况,请执行以下命令
source .bash_profile
或者
source /etc/profile
参考自:http://d.hatena.ne.jp/Akineko/20090825/1251187210