【mac相关bash文件】时间:2023-03-09 07:25:31 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