मैक टर्मिनल में हमेशा पूर्ण निर्देशिका पथ कैसे दिखाया जाता है (जैसे कि लिनक्स टर्मिनल)


70

मेरे ubuntu टर्मिनल में मैं हमेशा वर्तमान निर्देशिका पूरी तरह से दिखाया गया है। सिर्फ इस तरह:

blabla @ blublu: ~ / संगीत / my_album / शास्त्रीय / बीथोवेन $

लेकिन मेरे मैक (मैक ओएस एक्स 10.6.5) टर्मिनल में पूरा रास्ता नहीं दिखा है और यह इस तरह है:

ब्लाबस-मैकबुक-प्रो: शास्त्रीय बीथोवेन $

वहाँ वैसे भी है कि मैं लिनक्स टर्मिनल की तरह काम करने के लिए मैक टर्मिनल व्यवहार बदल जाते हैं?


1
टर्मिनल ऐप की प्राथमिकताओं में एक स्क्रीन होनी चाहिए। जो आप व्यवहार बदल सकते हैं।

1
लिनक्स टर्मिनल जादुई रूप से पूरा रास्ता नहीं दिखाते हैं; यह आपकी सेटिंग्स पर निर्भर करता है। कुछ linux distros डिफॉल्ट रूप से पूरा रास्ता दिखाने के लिए चीजों को कॉन्फ़िगर करते हैं, कुछ नहीं। यह सब $ PS1 चर पर निर्भर करता है। (असमस का जवाब देखें।)
frabjous

जवाबों:


108

अपने प्रॉम्प्ट के रूप में "यूजर @ होस्टनाम: पाथ / टू / डाइरेक्टरी $" को वापस करने के लिए, निम्नलिखित लाइन को अपने ~ / .bash_profile पर जोड़ें।

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

या

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

अगर आपको $ और कमांड के बीच जगह पसंद है

परिवर्तनों को तुरंत प्रभावी बनाने के लिए, प्रत्येक खुली विंडो में (या टर्मिनल को पुनरारंभ करें) निम्न कमांड चलाएँ:

source ~/.bash_profile

संपादित करें : उपलब्ध स्ट्रिंग्स की एक सूची बैश के लिए मैन पेज में "PROMPTING" में मिल सकती है man bash: ( )

उत्साह

  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
या बस PS1हर खुली खिड़की में उस असाइनमेंट को दर्ज करें । वैसे, exportअनावश्यक है।
डेनिस विलियमसन

6
दरअसल, यदि आप निर्यात का उपयोग नहीं करते हैं, तो आपका शेल वेरिएबल को परिभाषित करेगा, न कि एक पर्यावरण वैरिएबल, इसलिए PS1 को वैश्विक रूप से सभी प्रक्रियाओं में पारित नहीं किया जाएगा।
असमस

1
निर्यात कॉम सुझाव के अनुसार काम कर रहा है और पूर्ण पथ दिखा रहा है, लेकिन एक बार जब मैं टर्मिनल को पुनः आरंभ करता हूं तो यह केवल वर्तमान निर्देशिका (पूर्ण पथ नहीं) दिखाता है। मैं इसे हमेशा कैसे रख सकता हूं।
JiteshW

1
यह समझाने के लिए क्या संभव होगा PS1, \u@\H:\w$इसका मतलब है?
जस

3
@ जस ने अपने उत्तर को तदनुसार अपडेट कर दिया है, पता नहीं मैंने ऐसा सालों पहले क्यों नहीं किया था ^ ^
असमस


8

मैंने अपने मैक पर सेंटोस टर्मिनल के समान दिखने के लिए इसे बनाया। टर्मिनल पर bash_profile खोलें

nano ~/.bash_profile

निम्नलिखित जोड़ें

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

टर्मिनल को पुनरारंभ करें और फिर यह इस तरह दिखेगा

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

6

PS1 मान के अंदर, "\ w" पूर्ण पथ का प्रतिनिधित्व करता है, जहां "\ W" केवल वर्तमान निर्देशिका नाम का प्रतिनिधित्व करता है।

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


मुझे मैकबुक पर '\ w' और '\ W' के बीच कोई अंतर क्यों दिखाई नहीं देता? मैं पूरा रास्ता भटक गया, लेकिन इसे नहीं देख सकता।
डेनिजेल

1

मैं सिर्फ वर्तमान फ़ोल्डर बनाने के लिए / w / 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 में बदलता हूं


0

मैंने इस कमांड का इस्तेमाल किया। इससे मेरा काम बनता है।

प्रथम,

vi ~/.bash_profile

फिर, इस शब्द को एक नई पंक्ति में जोड़ें।

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

आखिरकार,

`source ~/.bash_profile`
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.