web-dev-qa-db-fra.com

Comment avoir le chemin complet du répertoire toujours affiché dans le terminal mac (comme le terminal linux)

Dans mon terminal ubuntu, j'ai toujours le répertoire actuel complètement affiché. Juste comme ça:

blabla @ blublu: ~/music/mon_album/classique/beethoven $

Mais dans mon Mac (Mac OS X 10.6.5), le terminal n’affiche pas le chemin complet et se présente comme suit:

blabas-MacBook-Pro: beethoven classique $

Y at-il de toute façon que je change le comportement du terminal mac pour agir comme un terminal linux?

67
Pouya

Pour que bash retourne "utilisateur @ nomhôte: chemin/vers/répertoire $" comme invite, ajoutez la ligne suivante à votre fichier ~/.bash_profile:

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

ou

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

si vous aimez avoir un espace entre le $ et la commande

pour que les modifications prennent effet immédiatement, exécutez la commande suivante dans chaque fenêtre ouverte (ou redémarrez Terminal):

source ~/.bash_profile

EDIT: Vous trouverez une liste des chaînes disponibles dans le paragraphe "PROMPTING" de la page de manuel de bash (man bash):

Prompt

  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
99
Asmus

Je ne suis pas sûr de Mac, mais sous Ubuntu, j’ai changé l’invite du terminal Gnome avec

PS1="\a\n\n\e[31;1m\u@\h on \d at \@\n\e[33;1m\w\e[0m\n$ "
10
BZ1

Je l'ai fait ressembler beaucoup au terminal centOS sur mon Mac. Bash_profile ouvert, sur le terminal

nano ~/.bash_profile

Ajouter ce qui suit

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

Redémarrez le terminal et cela ressemblera à ceci

[email protected] [/Applications/MAMP/htdocs]$ 
8
Andres Ramos

Dans la valeur PS1, "\ w" représente le chemin complet, où "\ W" représente uniquement le nom du répertoire actuel.

http://tldp.org/HOWTO/Bash-Prompt-HOWTO/bash-Prompt-escape-sequences.html

6
superNobody

Je viens de changer le/w en/W pour faire que le dossier actuel

en terminal de couleur

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

pas de terminal couleur

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

J'utilise Ubuntu 16.04 et change le fichier dans ~/.bashrc

1
Afrijal Dzuhri

J'ai utilisé cette commande. Ça marche pour moi.

premier,

vi ~/.bash_profile

ajoutez ensuite ces mots dans une nouvelle ligne.

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

enfin,

`source ~/.bash_profile`
0
Fank Zhou