I logged into my account on Bluehost using SSH and I got an unusual prompt.
I expected it to show the directory and a typical prompt but instead got some bash
.
I logged into my account on Bluehost using SSH and I got an unusual prompt.
I expected it to show the directory and a typical prompt but instead got some bash
.
What you're seeing is the default bash prompt. This is what you get when the distro doesn't provide a better one in /etc/profile
or similar. You can get it on any platform by ignoring the environment and config files:
env -i bash --norc
To get the user@host:dir$
prompt that Debian and derived distros use, you can add
export PS1='\u@\h:\w\$ '
to your .bash_profile