Jay wrote:
>
> Hi,
>
> Is there a way of displaying the current path in the shell
> prompt a-la (dare I say it) windowz prompt $p$g ?
>
I don't use Windows, so I don't know what that does, but I think this is what you're looking for:
export PS1='[\u@\h \w]\$'
To reset to original setting:
export PS1='[\u@\h \W]\$'
To check current setting:
echo $PS1
Hope this is more helpful
