Linux(CentOS)にパス(PATH)を通す方法
2016/11/21
$ echo $PATH
■パスの設定方法(一時的)
例: /usr/local/scala/bin にパスを通す場合
$ export PATH=$PATH:/usr/local/scala/bin
■PHPのパスを足すときはこんな感じ
$ export PATH=$PATH:/usr/local/php/5.6.15/bin/
パスの設定方法(永続的)
ユーザー単位の設定方法
■Viエディタで書き換える
上記の一時的設定方法のコマンド export PATH=$PATH:~ をホームディレクトリにあるファイル .bash_profile の最終行に追記して下さい。
全ユーザーへの設定方法
ファイル /etc/profile の最終行に、ユーザー単位の設定方法と同じくコマンドを追記して下さい。
また、これらのファイルはログイン時に実行されるものですので、ファイルに追記後すぐに反映したい場合は source .bash_profile または source /etc/profile を実行して下さい。
(参考:http://d.hatena.ne.jp/Akineko/20090825/1251187210)
Warning: Undefined variable $postID in /home/foodheart/flashbuilder-job.com/public_html/wp-content/themes/stingerplus/single.php on line 87