Como ter o caminho completo do diretório sempre mostrado no terminal mac (como o terminal linux)

54

No meu terminal ubuntu eu sempre tenho diretório atual mostrado completamente. Assim:

blabla@blublu:~/music/my_album/classical/beethoven$

No meu Mac (Mac OS X 10.6.5), o terminal não mostra o caminho completo e é assim:

blabas-MacBook-Pro:classical beethoven$

Existe alguma maneira que eu mude o comportamento do terminal mac para agir como o terminal linux?

    
por Der Hochstapler 31.01.2011 / 16:46

6 respostas

84

Para permitir que o bash retorne "user @ hostname: caminho / para / diretório $" como seu prompt, adicione a seguinte linha ao seu ~ / .bash_profile:

export PS1='\u@\H:\w$'

ou

export PS1='\u@\H:\w$ '

se você gosta de ter um espaço entre o $ e o comando

para que as alterações entrem em vigor imediatamente, execute o seguinte comando em todas as janelas abertas (ou reinicie o Terminal):

source ~/.bash_profile

EDITAR : Uma lista de strings disponíveis pode ser encontrada no parágrafo "PROMPTING" na página man do bash ( man bash ):

PROMPTING

  When executing interactively, bash displays the primary prompt PS1 when it is ready to read a command, and the secondary prompt PS2 when it needs more input to complete a command.  Bash allows these prompt strings  to  be  customized  by
   inserting a number of backslash-escaped special characters that are decoded as follows:
          \a     an ASCII bell character (07)
          \d     the date in "Weekday Month Date" format (e.g., "Tue May 26")
          \D{format}
                 the format is passed to strftime(3) and the result is inserted into the prompt string; an empty format results in a locale-specific time representation.  The braces are required
          \e     an ASCII escape character (033)
          \h     the hostname up to the first '.'
          \H     the hostname
          \j     the number of jobs currently managed by the shell
          \l     the basename of the shell's terminal device name
          \n     newline
          \r     carriage return
          \s     the name of the shell, the basename of $0 (the portion following the final slash)
          \t     the current time in 24-hour HH:MM:SS format
          \T     the current time in 12-hour HH:MM:SS format
          \@     the current time in 12-hour am/pm format
          \A     the current time in 24-hour HH:MM format
          \u     the username of the current user
          \v     the version of bash (e.g., 2.00)
          \V     the release of bash, version + patch level (e.g., 2.00.0)
          \w     the current working directory, with $HOME abbreviated with a tilde
          \W     the basename of the current working directory, with $HOME abbreviated with a tilde
          \!     the history number of this command
          \#     the command number of this command
          \$     if the effective UID is 0, a #, otherwise a $
          \nnn   the character corresponding to the octal number nnn
          \     a backslash
          \[     begin a sequence of non-printing characters, which could be used to embed a terminal control sequence into the prompt
          \]     end a sequence of non-printing characters
    
por 31.01.2011 / 17:15
9

Eu não tenho certeza sobre o Mac, mas no Ubuntu eu alterei o Terminal Gnome prompt com

PS1="\a\n\n\e[31;1m\u@\h on \d at \@\n\e[33;1m\w\e[0m\n$ "
    
por 01.02.2011 / 06:14
7

Eu fiz para parecer muito semelhante ao terminal centOS no meu Mac. Abra o bash_profile, no terminal

nano ~/.bash_profile

Adicione o seguinte

# Show always fullpath on terminal
export PS1='\u@\H [\w]$ '

Reinicie o Terminal e depois ficará assim

[email protected] [/Applications/MAMP/htdocs]$ 
    
por 09.06.2016 / 16:30
6

Dentro do valor PS1, "\ w" representa o caminho completo, onde "\ W" representa apenas o nome do diretório atual.

link

    
por 01.02.2011 / 07:27
1

Eu apenas mudo o / w para / W para criar apenas a pasta atual

no terminal colorido

PS1='${debian_chroot:+($debian_chroot)}\[3[01;32m\]\u@\h\[3[00m\]:\[3[01;34m\]\W\[3[00m\]\$ '

sem terminal colorido

    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\W\$ '

Eu uso o ubuntu 16.04 e mudo o arquivo em ~ / .bashrc

    
por 05.06.2017 / 06:00
0

Eu usei este comando. Isso funciona para mim.

primeiro,

vi ~/.bash_profile

adicione as palavras em uma nova linha.

'export PS1='\u@\H:\w$ ''

finalmente,

'source ~/.bash_profile'
    
por 29.12.2017 / 15:44