首页 > 代码库 > shell基础part3

shell基础part3

shell基础

一、环境变量配置文件简介

  1、source命令的作用就是将环境变量配置文件强制生效,其格式为: source 环境变量配置文件或者 . 环境变量配置文件

  2、环境变量配置文件中主要是定义对系统操作环境生效的系统默认环境变量。如PATH history PS1等。 

  3、环境变量配置文件的路径:/etc/profile;/etc/profiled/*.sh;/etc/.bashrc;用户家目录下/.bashrc;用户家目录下/.bashrc_profile.

二、环境变量配置文件的作用

  1、环境变量配置文件的读取过程

  技术分享

  2、/etc/profil文件的作用                     ~/.bash_profile的作用                        ~/.bashrc的作用        /etc/bashrc文件的作用

  技术分享技术分享技术分享技术分享

shell基础part3