最終更新:2019-03-12 (火) 17:22:59 (1865d)  

.bash_profile
Top / .bash_profile

ログイン時に読み込まれる設定ファイル。

bash --login

とすれば読み込まれる

用途

Mac OS X

  • # Get the aliases and functions
    if [ -f ~/.bashrc ]; then
            . ~/.bashrc
    fi

CentOSのデフォルト

# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi

# User specific environment and startup programs

PATH=$PATH:$HOME/bin

export PATH

関連