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.
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 symbolAfter running this, your shell prompt will look like:
username@myhost:~/project$