LoginSignup
5
0

More than 5 years have passed since last update.

bashのプロンプトをちょっと見やすくした

Posted at
$ vim ~/.bashrc

.bashrcに下記を追記

export PS1="\[\e[32m\]\u@\h:\w\[\e[0m\]\\n\\$ "

変更を反映

$ source ~/.bashrc

これで.bashrcが再読込されるけど、どうやらMacはターミナル起動時に.bashrcが読み込まれるようになっていない?

$ vim ~/.bash_profile

下記を追記

if [ -f ~/.bashrc ] ; then
. ~/.bashrc
fi

ターミナル再起動

スクリーンショット 2018-02-01 12.42.46.png

ちょっと見やすくなった

オススメの設定があったら知りたい:flushed:

5
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
0