谁改了我的shell环境变量?

时间:2022-12-12 22:29:18
 同志们,你们会不会遇到这个问题呢?
bash-3.2#
为什么我登陆后 好像不在原来的shell了。
bash-3.2# ll
bash: ll: command not found
但是我是root登录的,并且下面也有文件.bashrc和.bash_profile这两个文件啊~
bash-3.2# whoami
root
bash-3.2# ls -a
.  ..  .bash_history  .bash_logout  .bash_profile  .bashrc  .cshrc  .mysql_history  .rnd  .ssh  .tcshrc  .viminfo  db_bak.sh  web_bak.sh
中间的猜想:
可能情况是你prompt 变量丢了;改变了当前connection的变量,但是系统里是没变的
再看看PS1变量:
-bash-3.2# echo $PS1
\s-\v\$
最后发现是.bashrc里的内容会丢失了。
只要将以下内容加入这个文件即可:

# .bashrc

# User specific aliases and functions

alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'

# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi

 

PS:

centos默认关于ll的alias是在/etc/profile.d/colorls.sh这个文件里存在的
alias ll='ls -l' 2>/dev/null
alias l.='ls -d .*' 2>/dev/null