If you use the Terminal in OSX frequently you probably keep multiple tabs open. You can actually name these tabs very easily to remind you what you are doing in each tab.
Edit or create your .bash_profile
1 |
nano ~/.bash_profile |
and add this line:
1 |
function title() { echo -e -n "\033]0;$1\007"; } |
Close and re-open terminal, now you can set the title like this:
1 |
title EpicTabTitle |