Category: Terminal
How to add a custom welcome message to your terminal
Here’s a quick tip on how to add a custom message which is displayed each time you open a new terminal window. 1. Open the Terminal app 2. Run the following command to edit the bash_profile:
|
1 |
nano ~/.bash_profile |
3. Within the editor after the source ~/.profile line, add in the following line:
|
1 |
echo "Hey. Try not to break anything, ok?" |
You […]

