मैं echo $PATH
कमांड लाइन पर टाइप करता हूं और मिलता हूं
/opt/local/bin:/opt/local/sbin:/Users/andrew/bin:/usr/local/bin:/usr/local/mysql/bin:/usr/local/pear/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin
मैं सोच रहा था कि यह कहां सेट हो रहा है क्योंकि मेरी .bash_login
फाइल खाली है।
मैं विशेष रूप से चिंतित हूँ कि, MacPorts स्थापित करने के बाद, इसने कबाड़ का एक गुच्छा स्थापित किया /opt
। मुझे नहीं लगता कि वह निर्देशिका सामान्य मैक ओएस एक्स में भी मौजूद है।
अपडेट: मेरे कथन को सही करने के लिए jtimberman का धन्यवादecho $PATH
/etc/paths.d
स्थापना स्क्रिप्ट के लिए उपयोगी है। यदि मैं अपनी इंस्टॉलेशन स्क्रिप्ट को पथ में स्थापित प्रोग्राम को जोड़ना चाहता हूं, तो मैं एक फ़ाइल को ड्रॉप कर सकता हूं /etc/paths.d
। अगर मैं पथ को मैन्युअल रूप से संपादित करना चाहता हूं, /etc/paths
तो एक बेहतर विकल्प है।
easiest solution when you want to make a site-wide path change (e.g. to include /usr/libexec or whatever) is to edit
/etc/paths
. While the new
/etc/paths.d/
thing is functional, it's actually more hassle than maintaining a single file. As others have hinted but not spelled out, if the path changes you want would be useful only for one user, it's best to make that change in the bash and/or tcsh config files in that user's home directory instead of system-wide.