web-dev-qa-db-ja.com

フルディレクトリパスを常にMac端末に表示する方法(Linux端末のように)

私のubuntu端末では、常に現在のディレクトリを完全に表示しています。ちょうどこのような:

blabla @ blublu:〜/ music/my_album /クラシック/ベートーベン$

しかし私のMac(Mac OS X 10.6.5)では、端末はフルパスを表示していません、そしてそれはこのようなものです:

blabas-MacBook-Pro:クラシックベートーベン$

私は、Linux端末のように動作するようにMac端末の動作を変更することはありますか?

67
Pouya

Bashがプロンプトとして "user @ hostname:path/to/directory $"を返すようにするには、〜/ .bash_profileに次の行を追加します。

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

または

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

$とコマンドの間にスペースを入れたい場合

変更をすぐに有効にするには、開いているすべてのウィンドウで次のコマンドを実行します(またはターミナルを再起動します)。

source ~/.bash_profile

EDIT:利用可能な文字列のリストは、bash(man bash)のmanページの段落 "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
99
Asmus

私はMacについてはよくわかりませんが、Ubuntuでは Gnome Terminal Prompt を次のように変更しました。

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

私のMacのcentOS端末と非常によく似ているようにしました。端末でbash_profileを開きます。

nano ~/.bash_profile

以下を追加

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

ターミナルを再起動すればそれはこのようになります

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

PS1値の中で、 "\ w"はフルパスを表し、 "\ W"は現在のディレクトリ名のみを表します。

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

6
superNobody

/ wを/ Wに変更して現在のフォルダだけにする

色付き端末で

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

カラーターミナルなし

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

私はubuntu 16.04を使用してファイルを〜/ .bashrcに変更します

1
Afrijal Dzuhri

私はこのコマンドを使いました。わたしにはできる。

最初、

vi ~/.bash_profile

次に、この単語を新しい行に追加します。

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

最後に、

`source ~/.bash_profile`
0
Fank Zhou