Como alterar o prompt do bash?

0

Eu gostaria de alterar meu prompt bash quando eu fizer login. Mas mesmo depois de eu mudar o .bashrc e re-login, ele ainda avisa o antigo. O que está errado, por favor?

Eu quero receber [\u@\h \W]\$ mas recebo \s-\v\$ por alguns motivos e não sei onde foi configurado.

Esta conta não é a raiz, no entanto, tenho permissões de root, se necessário

Isso é o que eu recebo:

-bash-3.2$ cat .bashrc
PS1='[\u@\h \W]\$'
-bash-3.2$ echo $PS1
\s-\v\$
-bash-3.2$
    
por user1762109 26.02.2014 / 07:00

1 resposta

1

Provavelmente seu shell é um shell de login interativo, portanto, ele não lê ~/.bashrc , mas ~/.bash_profile :

   When  bash is invoked as an interactive login shell, or as a non-inter‐
   active shell with the --login option, it first reads and executes  com‐
   mands  from  the file /etc/profile, if that file exists.  After reading
   that file, it looks for ~/.bash_profile, ~/.bash_login, and ~/.profile,
   in  that order, and reads and executes commands from the first one that
   exists and is readable.  The --noprofile option may be  used  when  the
   shell is started to inhibit this behavior.

A correção rápida e suja pode ser apenas para fazer um link simbólico de ~/.bashrc para ~/.bash_profile ou vice-versa. Isso é possível quebrar algo com shells não interativos, por exemplo comandos são executados remotamente através do SSH, então pense duas vezes.

Veja a seção "INVOCATION" em man bash para mais detalhes.

    
por 26.02.2014 / 07:40