centos 普通用户自动加载bashrc
新拿到的服务器,普通用户使用 ll命令失败
1、拷贝bashrc
cp /etc/skel/.bashrc ~/
2、创建.profile文件
vim ~/.profile:添加下列内容
# ~/.profile: executed by Bourne-compatible login shells.
if [ "$BASH" ]; then
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
fi
mesg n
3、执行
source ~/.profile
转载请记录来源!!!!
https://www.cnblogs.com/leihongnu/