Quantcast
Channel: Bashタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 2912

Macターミナルで $ の前のコンピュータ名、ユーザ名を非表示にする

$
0
0

Macターミナルで $ の前のコンピュータ名、ユーザ名を非表示にして、ディレクトリ名と$マークのみに変更する。

# .bash_profile を開く
vi ~/.bash_profile 

# .bash_profile に追記
if [ -f ~/.bashrc ]; then
  . ~/.bashrc
fi

# .bashrc を開く
vi ~/.bashrc 

# .bashrc に追記。今いるディレクトリ名と$マークのみが表示されるように設定。
PS1="\W $ "

以上で、ターミナルを再起動すると、変更が反映される。

参考

https://tech.qookie.jp/posts/terminal-turn-off-prompt/
https://www.webdesignleaves.com/pr/plugins/mac_terminal_basics_01.html


Viewing all articles
Browse latest Browse all 2912

Trending Articles