标签:文件 login etc centos 读取 zsh 加载顺序 交互 out
交互式登陆shell
对于交互式的登陆shell而言,CentOS规定了startup文件的加载顺序如下:
登陆过程:
1. 读取并执行/etc/profile文件;
2. 读取并执行~/.bash_profile文件;
- 若文件不存在,则读取并执行~/.bash_login文件;
- 若文件不存在,则读取并执行~/.profile文件;
登出过程:
1. 读取并执行~/.bash_logout文件;
2. 读取并执行/etc/bash.bash_logout文件;
.zshrc source后只会在当前窗口生效
CentOS 的 /etc/profile 和 ~/.bash_profile 及 .zshrc
标签:文件 login etc centos 读取 zsh 加载顺序 交互 out
原文地址:https://www.cnblogs.com/mafeng/p/10682404.html