|
发表于 2005-8-6 14:00:57
|
显示全部楼层
我的xdm和kdm的Xsession都有这么一段
- profile=/etc/profile
- userprofile=~/.profile
- if [ -r $profile ]; then
- source $profile 1> /dev/null 2> /dev/null
- fi
- if [ -r $userprofile ]; then
- source $userprofile 1> /dev/null 2> /dev/null
- fi
复制代码
所以写在/etc/profile也是有效的。 |
|