web-dev-qa-db-ja.com

.profileまたは.bash_profile

混乱しています。環境変数はどこに設定すればよいですか?

.profileまたは.bash_profile内?

私はmac osxとubuntuの両方を使用しています。

ここでどちらを使用するかについて混乱しています。

14
user27449

読み取り http://www.gnu.org/software/bash/manual/bashref.html#Bash-Startup-Files

 When Bash is invoked as an interactive login Shell, or as a 
 non-interactive Shell with the --login option, it first reads 
 and executes commands from the file /etc/profile, if that file
 exists. After reading that file, it looks for ~/.bash_profile, 
 ~/.bash_login, and ~/.profile, in that order, and reads and executes
 commands from the first one that exists and is readable. The 
 --noprofile option may be used when the Shell is started to inhibit
 this behavior.

他のシェルは~/.profileもロードします(zsh、tcsh)..したがって、環境変数を~/.profileに入れます。

mac osx関連の更新(@Matt Bに感謝)

gUIプログラムの場合は http://developer.Apple.com/library/mac/#qa/qa2001/qa1067.html を読み、~/.MacOSX/environment.plistを注意深く編集してください。

22
akira

Bashを使用する場合、~/.bash_profile。他のシェルを使用する場合は、~/.profile

3
Steven