0

Currently my bash prompt looks like this

[user_name@server]$

when I cd into a path /dir1/dir2/dir3

it changes to

[user_name@server dir3]$

I want it to show the full path as

[user_name@server dir1/dir2/dir3]$ 

How can I do this ?

Cyrus
  • 84,225
  • 14
  • 89
  • 153
K_TGTK
  • 765
  • 1
  • 8
  • 24

1 Answers1

1

If you set PS1="[\u@\h: \w/]\$" in your bash setup scripts (~/.bashrc for me) then you will get (eg) [alan@alan-Z87MX-D3H: ~/]$

alan ocallaghan
  • 3,116
  • 17
  • 37