Getting logged in as bash and not with username

When I log in to the web console with the given credentials, I am logged in as bash 4.2.

I am attaching the screenshot.

Hey Ravi,

Run the following command in your web console:

echo 'export PS1="\u@\h:\w$ "' >> ~/.bashrc && source ~/.bashrc

Explanation:

  • \u → username
  • \h → hostname
  • \w → current working directory
  • $ → prompt symbol

After running this, your shell prompt will look like:

username@myhost:~/project$