Answers:
许多Linux发行版都支持Linux Standard Base /etc/profile.d
目录,在该目录中可以进行诸如其他路径指令之类的配置,而无需接触库存系统文件。文件名只需要扩展名为.sh。
例如
cat >> /etc/profile.d/some_name.sh << \EOF
PATH=$PATH:/path/to/ANT/bin
EOF
编辑/ etc / profile并更新“路径操作”部分。Centos在路径中不包含/ usr / local / bin。
# Path manipulation
if [ "$EUID" = "0" ]; then
pathmunge /usr/sbin
pathmunge /usr/local/sbin
pathmunge /usr/local/bin
else
pathmunge /usr/local/bin after
pathmunge /usr/local/sbin after
pathmunge /usr/sbin after
fi
export
行,/etc/bashrc
因为它将在系统范围内读取。