Tam dizin yolunun her zaman mac terminalinde (linux terminali gibi) gösterilmesi


71

Ubuntu terminalimde her zaman güncel dizini gösterdim. Aynen böyle:

blabla @ blublu: ~ / müzik / my_album / klasik / beethoven $

Ancak Mac'imde (Mac OS X 10.6.5) terminalim tam yolu göstermiyor ve şöyle:

blabas-MacBook-Pro: klasik pancar

Mac terminali davranışını linux terminali olarak değiştirdiğim için yine de var mı?


1
Terminal App tercihlerinde bir ekran olması gerekir. hangi davranışları değiştirebileceğiniz.

1
Linux terminalleri sihirli bir şekilde tam yolu göstermez; ayarlarına bağlı. Bazı linux dağıtımları, tam yolu varsayılan olarak göstermek için işleri yapılandırır, bazıları göstermez. Hepsi $ PS1 değişkenine bağlıdır. (Bkz. Asmus’un cevabı.)
11:11

Yanıtlar:


109

Bash'ın "user @ hostname: path / to / directory $" komut istemini döndürmesini sağlamak için, aşağıdaki satırı ~ / .bash_profile dosyasına ekleyin:

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

veya

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

$ ile komut arasında boşluk bırakmak isterseniz

değişikliklerin hemen yürürlüğe girmesini sağlamak için, her açık pencerede aşağıdaki komutu çalıştırın (veya Terminali yeniden başlatın):

source ~/.bash_profile

EDIT : Kullanılabilir karakter dizilerinin bir listesini bash ( man bash) man sayfasındaki "PROMPTING" paragrafında bulabilirsiniz :

telkin

  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
Veya sadece bu PS1pencereye her açık pencereye girin. Bu arada, exportgereksiz.
Dennis Williamson,

6
Aslında, dışa aktarmayı kullanmazsanız, bir ortam değişkeni değil, bir kabuk değişkeni tanımlayacaksınız, bu nedenle PS1 tüm işlemlere küresel olarak geçilmeyecekti.
Asmus,

1
export com önerilen şekilde çalışıyor ve tam yolu gösteriyor, ancak terminali yeniden başlattığımda sadece mevcut dizini gösteriyor (tam yolu değil). Bunu sonsuza kadar nasıl saklayabilirim.
JiteshW '

1
ne açıklamak mümkün olacağını PS1, \u@\H:\w$demek?
Jas,

4
@Jas Buna göre cevabımı güncelledim, neden yıllar önce yapmadım bilmiyorum ^^
Asmus


8

Mac'imdeki centOS terminaline çok benzemesini sağladım. Terminalde bash_profile dosyasını açın.

nano ~/.bash_profile

Aşağıdakileri ekleyin

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

Terminali yeniden başlattığınızda şöyle görünecektir:

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


1

Sadece geçerli klasörü yapmak için / w ile / W'yi değiştiriyorum

renkli terminalde

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

renk terminali yok

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

Ubuntu 16.04 kullanıyorum ve dosyayı ~ / .bashrc olarak değiştiriyorum.


0

Bu komutu kullandım. Benim için çalışıyor.

ilk,

vi ~/.bash_profile

daha sonra bu kelimeleri yeni bir satıra ekleyin.

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

en sonunda,

`source ~/.bash_profile`
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.