【mac相关bash文件】

mac 下 关于 .bashrc 和 .bash_profile

 

1.首先.bashrc 可能自带的系统里没有这个文件。

2.bash_profile  里边一半放的是PATH相关。

3. .bashrc 一般放的是用户私有的,比如alias相关。

4. 需要在多个窗口生效时 ,需要在.bash_profile里加载。

if [ -f ~/.bashrc ] && [ $SHELL = '/bin/bash' ]; then
   source ~/.bashrc
fi



posted @ 2019-09-05 17:49  DevelopersAndGamers  阅读(231)  评论(0编辑  收藏  举报