O Mac OS X Terminal não está obtendo o arquivo de recursos até que o Terminal seja fechado e reiniciado?

0

Alguém pode explicar como o terminal é originado no Mac OS X, por favor. Eu tenho que desligar e ligar todos os dias para que as alterações entrem em vigor ao editar arquivos shell.

Sim, isso também é um problema com o sourcing VIM, embora isso pareça insolúvel no momento. Eu tenho outro tópico sobre isso problema .

    
por FallenAngel 10.09.2015 / 23:04

1 resposta

1

Supondo que você esteja usando o bash como seu shell, confira o snippet abaixo em esta página .

Bash Startup Files

When a "login shell" starts up, it reads the file /etc/profile and then ~/.bash_profile or ~/.bash_login or ~/.profile (whichever one exists - it only reads one of these, checking for them in the order mentioned).

When a "non-login shell" starts up, it reads the file /etc/bashrc and then the file ~/.bashrc.

Note that when bash is invoked with the name "sh", it tries to mimic the startup sequence of the Bourne shell ("sh"). In particular, a non-login shell invoked as "sh" does not read any dot files by default. See the bash man page for details.

    
por 16.09.2015 / 04:05