10
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Linux/bash:プロンプトの表示を変える方法備忘録

Last updated at Posted at 2017-12-19

たまにいきなりプロンプトが変わって直そうとするけど絶妙な頻度なので忘れてる

プロンプト

問題のプロンプトの表示

-bash-4.2$ 

.bash_profileが消えた・・?元々無かった・・?

期待するプロンプトの表示

[hoge@app1 ~]$

[ユーザー名@ホスト名 カレントディレクトリ]$ の書式

.bash_profileに設定を書く

~/.bash_profile
PS1='[\u@\h \W]\$ '
要素 説明
\u ユーザー名を表示する
\h ホスト名を表示する
\W カレントディレクトリを表示する
$ admin権限のユーザーの場合は#、そうでない場合は$を表示する

設定を反映させる

ログインしなおす

[hoge@app1 ~]$

期待通りの表示になった

10
5
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
10
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?