Path

在 $PATH 中為每個使用者全域添加一個路徑

  • March 18, 2020

我們是否必須在全域範圍內添加一條路徑,以便每個使用者都可以使用它 $ PATH. I want to add path of ANT so that each user doesn’t need to add it in his $ 路徑變數。

全域路徑應設置在/etc/profileor中/etc/environment,只需將此行添加到/etc/profile

PATH=$PATH:/path/to/ANT/bin

許多 Linux 發行版都支持 Linux Standard Base/etc/profile.d目錄,在該目錄中,諸如附加路徑指令之類的配置可以在不觸及庫存系統文件的情況下進行。文件名只需要一個 .sh 副檔名。

例如

cat >> /etc/profile.d/some_name.sh << \EOF
 PATH=$PATH:/path/to/ANT/bin
EOF

引用自:https://unix.stackexchange.com/questions/104727