mac 下 profile文件

  1. 当你的home下面有.bash_profile或者.bash_login的时候,会忽略调.profile.   
  2. 稍微调查了一下,做个笔记   
  3. 主要有一下几种方式   
  4. /etc/profile    
  5. ~/.bash_profile    
  6. ~/.bash_login    
  7. ~/.profile    
  8. ~/.bashrc    
  9. ~/.bash_logout   
  10.   
  11. /etc/profile   
  12. 登录的时候读入,默认的设定文件.   
  13. ~/.bash_profile   
  14. 登录之后在/etc/profile载入之后载入,十分重要的配置文件   
  15. ~/.bash_login   
  16. 登录之后如果~/.bash_profile不存在的话,载入这个文件   
  17. ~/.profile   
  18. 登录之后~/.bash_login不存在的话,才载入这个文件   
  19. ~/.bashrc   
  20. bash shell打开的时候载入   
  21. etc下的配置是针对系统,~下的主要是针对用户  

你可能感兴趣的:(IOS开发)