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

posted @ 2023-04-24 16:14  leihongnu  阅读(140)  评论(0编辑  收藏  举报