天天看点

/etc/profile 和 ~/.profile 区别是全部用户,和单一用户

bashrc与profile的区别

要搞清

bashrc

profile

的区别,首先要弄明白什么是

交互式

shell

和非交互式

shell

,什么是

login shell 

non-login shell

交互式模式就是

shell

等待你的输入,并且执行你提交的命令。这种模式被称作交互式是因为

shell

与用户进行交互。这种模式也是大多数用户非常熟悉的:登录、执行一些命令、签退。当你签退后,

shell

也终止了。

 shell

也可以运行在另外一种模式:非交互式模式。在这种模式下,

shell

不与你进行交互,而是读取存放在文件中的命令

,

并且执行它们。当它读到文件的结尾,

shell

也就终止了。

bashrc

profile

都用于保存用户的环境信息,

bashrc

用于交互式

non-login

shell

,而

profile

用于交互式

login shell

。系统中存在许多

bashrc

profile

文件,下面逐一介绍:

/etc/pro

此文件为系统的每个用户设置环境信息

,

当第一个用户登录时

,

该文件被执行

.

并从

/etc/profile.d

目录的配置文件中搜集

shell

的设置

.

/etc/bashrc:

为每一个运行

bash shell

的用户执行此文件

.

bash shell

被打开时

,

该文件被读取。有些

linux

版本中的

/etc

目录下已经没有了

bashrc

文件。

~/. pro

每个用户都可使用该文件输入专用于自己使用的

shell

信息

,

当用户登录时

,

文件仅仅执行一次

!

默认情况下

,

它设置一些环境变量

,

然后执行用户的

.bashrc

文件

.

~/.bashrc:

该文件包含专用于某个用户的

bash shell

bash

信息

,

当该用户登录时以及每次打开新的

shell

,

该文件被读取

.

另外

,/etc/profile

中设定的变量

(

全局

)

的可以作用于任何用户

,

~/.bashrc

等中设定的变量

(

局部

)

只能继承

/etc/profile

中的变量

,

他们是

"

父子

"

关系

.

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

英文描述为:

# /etc/profile
# System wide environment and startup programs, for login setup
 # Functions and aliases go in /etc/bashrc# 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.      

所以如果你有对/etc/profile有修改的话必须得重启你的修改才会生效,此修改对每个用户都生效。

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

英文描述为:

# /etc/bashrc
# System wide functions and aliases
 # Environment stuff goes in /etc/profile# 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即可生效。

下一篇: Ruby元编程