文章目录
有两点需要明白:
- /etc/下面的代表全局;
~/
代表用户 - 有些时候重登,bashrc需要source进行激活,通过设置profile 文件可以避免这个操作,比如:
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
可以参考:
linux关于profile 、bashrc 、.bash_profile、.bashrc的区别
2022-12-10 12:31:55
~/
代表用户
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
可以参考:
linux关于profile 、bashrc 、.bash_profile、.bashrc的区别