Dany Paredes
Danywalls | Angular ♥ Web

Follow

Danywalls | Angular ♥ Web

Follow
How to hide computer name in OSX terminal

Photo by Dmitry Ratushny on Unsplash

How to hide computer name in OSX terminal

Make terminal clean

Dany Paredes's photo
Dany Paredes
·Feb 9, 2022·

1 min read

Play this article

I love to have a clean terminal, the name of the computer is a piece of information not relevant to read every single time.

Terminal without the computer name

I'm still using the bash shell.

echo "export PS1='$ '" >> ~/.bash_profile
. ~/.bash_profile

For zsh users add the following line into the .zshrc.

PS1="%n$ "

:)

 
Share this