- 论坛徽章:
- 0
|
我在profile文件里最后一行添加:PATH=/hom/../linux/4.4.3/bin之后,shell只认得这个路径了,其他路径都不记得了。
我看不太懂profile,所以给贴出来。
我只能大概猜profile写的是什么,不知道路径的原型定义在哪里,没见到有原来的PATH变量在哪里哇,也不知道ps1是哪里来的。
希望知道的人和我说一下,我不懂shell编程。
profile文件内容如下:
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
if [ "$PS1" ]; then
if [ "$BASH" ] && [ "$BASH" != "/bin/sh" ]; then
# The file bash.bashrc already sets the default PS1.
# PS1='\h:\w\$ '
if [ -f /etc/bash.bashrc ]; then
. /etc/bash.bashrc
fi
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi
# The default umask is now handled by pam_umask.
# See pam_umask( and /etc/login.defs.
if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
fi |
|