posso definir o nome de um terminal para ser o pwd no mac osx? [duplicado]

0

Eu tenho muitas janelas abertas do shell do Terminal abertas no Mac OSX ... Basta clicar com o botão direito no ícone para o terminal e escolher uma não é fácil, porque todas elas têm o mesmo título.

Existe uma maneira de alterar o título de uma janela de terminal para que seja sempre o diretório atual do qual o shell está sendo executado?

Obrigado.

    
por osxshell 29.10.2010 / 17:56

1 resposta

0

Tente isto: Mac OS X Alterar o Título da janela de terminal

The title of the Mac OS X terminal window can easily be changed. Changing the title can be useful when running a script or when using multiple terminal windows for different purposes in order to identify them easily when switching between applications and windows.

In the terminal window, from a bash prompt (the default shell) or in a bash shell script, use the following command to change the terminal window title to Tech-Recipes rules:

echo -n -e "3]0;Tech-Recipes rules%bl0ck_qu0te%7"

You can place (just about) any text in place of “Tech-Recipes rules” including the contents of a variable. Consider the following example:

name='hostname' echo -n -e "3]0;$name%bl0ck_qu0te%7"

This will change the title of the terminal to the hostname of the computer running the shell.

    
por 29.10.2010 / 18:26