0
0

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 1 year has passed since last update.

ターミナルの$より左側の長ったらしい部分を消したい~WSL2編

Last updated at Posted at 2022-08-15

自分用の備忘録。
Mac用の記事は結構あったけど、WSL2ではあまり見なかったので。

WSL2側のOSはUbuntu 20.04.4 LTS。
そのほかに境界条件がわからないので再現性の有無は分からない。
自分はこれでうまく行ったという話。

解決すべき課題

image.png
本当に長ったらしい……。
これをスッキリさせたい。

解決

bash_profileをいじったら行けました。
VSCodeで編集したかったので、code ~/.bash_profileでファイルを開く。

bash_profile
export PS1="\W$"

上記を追加すると、現在のディレクトリ名のみが表示される。
image.png
超すっきり。

応用

bash_profile
export PS1="\W$"

なお。
上記の\W$部分を変更することで、$の左側に何を表示するか変えれるらしい。

  • \w$だと、現在のディレクトリがホームディレクトリからの絶対パスで表示。
  • \u$だと、ユーザー名を表示。
  • \t$だと、時刻を表示

などなど。
表示色を変えたりする方法もあるらしいけど、
そこまでする気もなかったので省略。

参考

bashのプロンプトを変更するには

0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?