最終更新:2019-03-12 (火) 17:22:05 (1870d)  

Bash/設定ファイル
Top / Bash / 設定ファイル

http://www.gnu.org/software/bash/manual/html_node/Bash-Startup-Files.html

主な違い

.bash_profile (.profile)

  • ログイン時にのみ実行される

.bashrc

  • 対話モードの bash を起動する時に毎回実行 (インタラクティブシェル)
    • 環境変数でない変数を設定する (export しない変数)
    • aliasを定義する
    • シェル関数を定義する
    • コマンドライン補完の設定をする

起動時の読み込み順

Ubuntu

ログイン時

Bash起動時

CentOS

ログイン時

Bash起動時

ログアウト時

  • .bash_logout?

Cygwin Terminal

ディレクトリ別

Linux/etc

ホームディレクトリ

スケルトン

用途

参考