.bashrcと.bash_profile の編集と反映

毎回調べている気がするのでメモ





.bashrc


bash起動時に読み込まれる。



.bash_profile


ログイン時に読み込まれる。

ファイルの場所はそれぞれ
/Users/[UserName]/.bashxxxx
になる。



.bashrcと.bash_profile を編集する



vi ~/.bashrc
vi ~/.bash_profile

以下viを知らない人用
コマンドモードでの作業
各種コマンドが使える。
i で編集モード
:wq で保存して終了

編集モードでの作業
入力した文字がそのまま反映される。
Esc もしくはCtrl + [ で終了

viの詳細は以下
https://net-newbie.com/linux/commands/vi.html

適当なGUIエディタで開いて編集してもいい。



.bashrcと.bash_profile を反映する



source ~/.bashrc
source ~/.bash_profile



参考


https://qiita.com/magicant/items/d3bb7ea1192e63fba850

2018年5月30日水曜日