Linux中profile、bashrc、bash_profile之间的区别和联系

/etc/profile:此文件为系统的每一个用户设置环境信息,当用户第一次登陆时,该文件被执行.并从/etc/profile.d目录的配置文件中搜集shell的设置.shell

英文描述为:bash

# /etc/profileless

# System wide environment and startup programs, for login setup
# Functions and aliases go in /etc/bashrcide

# It's NOT a good idea to change this file unless you know what you
# are doing. It's much better to create a custom.sh shell script in
# /etc/profile.d/ to make custom changes to your environment, as this
# will prevent the need for merging in future updates.this

因此若是你有对/etc/profile有修改的话必须得重启你的修改才会生效,此修改对每一个用户都生效。
idea

/etc/bashrc:为每个运行bash shell的用户执行此文件.当bash shell被打开时,该文件被读取.spa

英文描述为:继承

# /etc/bashrcip

# System wide functions and aliases
# Environment stuff goes in /etc/profileio

# It's NOT a good idea to change this file unless you know what you
# are doing. It's much better to create a custom.sh shell script in
# /etc/profile.d/ to make custom changes to your environment, as this
# will prevent the need for merging in future updates.

若是你想对全部的使用bash的用户修改某个配置并在之后打开的bash都生效的话能够修改这个文件,修改这个文件不用重启,从新打开一个bash便可生效。

~/.bash_profile:每一个用户均可使用该文件输入专用于本身使用的shell信息,当用户登陆时,该文件仅仅执行一次!默认状况下,他设置一些环境变量,执行用户的.bashrc文件.

此文件相似于/etc/profile,也是须要须要重启才会生效,/etc/profile对全部用户生效,~/.bash_profile只对当前用户生效。

~/.bashrc:该文件包含专用于你的bash shell的bash信息,当登陆时以及每次打开新的shell时,该文件被读取.(每一个用户都有一个.bashrc文件,在用户目录下)

此文件相似于/etc/bashrc,不须要重启生效,从新打开一个bash便可生效,  /etc/bashrc对全部用户新打开的bash都生效,但~/.bashrc只对当前用户新打开的bash生效。

~/.bash_logout:当每次退出系统(退出bash shell)时,执行该文件. 

另外,/etc/profile中设定的变量(全局)的能够做用于任何用户,而~/.bashrc等中设定的变量(局部)只能继承/etc/profile中的变量,他们是"父子"关系.
 
~/.bash_profile 是交互式、login 方式进入bash 运行的;
~/.bashrc 是交互式 non-login 方式进入bash 运行的;一般两者设置大体相同,因此一般前者会调用后者。

相关文章
相关标签/搜索