Come avere sempre il percorso completo della directory mostrato nel terminale mac (come il terminale linux)


71

Nel mio terminale Ubuntu ho sempre mostrato la directory corrente completamente. Proprio come questo:

blabla @ blublu: ~ / Musica / my_album / classica / beethoven $

Ma nel mio Mac (Mac OS X 10.6.5) il terminale non mostra il percorso completo ed è così:

blabas-MacBook-Pro: beethoven classico $

Esiste un modo per cambiare il comportamento del terminale mac in modo che si comporti come un terminale Linux?


1
deve essere presente una schermata nelle preferenze dell'app Terminale. che puoi modificare i comportamenti.

1
I terminali Linux non mostrano magicamente l'intero percorso; dipende dalle tue impostazioni. Alcune distribuzioni di Linux configurano le cose per mostrare l'intero percorso di default, altre no. Tutto dipende dalla variabile $ PS1. (Vedi la risposta di Asmus.)
frabjous

Risposte:


109

Per lasciare che bash restituisca "user @ hostname: path / to / directory $" come prompt, aggiungi la seguente riga al tuo ~ / .bash_profile:

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

o

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

se ti piace avere uno spazio tra $ e il comando

per rendere immediatamente effettive le modifiche, eseguire il comando seguente in ogni finestra aperta (o riavviare Terminal):

source ~/.bash_profile

EDIT : un elenco di stringhe disponibili è disponibile nel paragrafo "PROMPTING" nella pagina man di 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

1
O inserisci semplicemente quel PS1compito in ogni finestra aperta. A proposito, exportnon è necessario.
Dennis Williamson,

6
In realtà, se non usi export, definiresti una variabile shell, non una variabile d'ambiente, quindi PS1 non verrebbe trasmessa globalmente a tutti i processi.
Asmus,

1
export com funziona come suggerito e mostra il percorso completo, ma una volta riavviato il terminale mostra solo la directory presente (non il percorso completo). Come posso mantenerlo per sempre.
JiteshW,

1
sarebbe possibile per spiegare che cosa PS1, \u@\H:\w$vuol dire?
Jas,

4
@Jas Ho aggiornato la mia risposta di conseguenza, non so perché non l'ho fatto anni fa ^^
Asmus


8

L'ho fatto sembrare molto simile al terminale centOS sul mio Mac. Apri bash_profile, sul terminale

nano ~/.bash_profile

Aggiungi quanto segue

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

Riavvia Terminal e quindi sarà simile a questo

username@host.local [/Applications/MAMP/htdocs]$ 


1

Ho appena cambiato il / w in / W per rendere solo la cartella corrente

nel terminale colorato

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

nessun terminale a colori

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

Uso Ubuntu 16.04 e cambio il file in ~ / .bashrc


0

Ho usato questo comando. Per me funziona.

primo,

vi ~/.bash_profile

quindi aggiungi queste parole in una nuova riga.

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

finalmente,

`source ~/.bash_profile`
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.