如何设置/更改默认值$PATH
环境变量$PATH/root
对于所有用户同时 ?
答案1
您只需添加一个简短的脚本/etc/profile.d
:
if [ "${PATH#*/your/dir}" = "${PATH}" ]; then
export PATH=$PATH:/your/dir
fi