The following are the environment variable related configuration files
1)/etc/enviroment is the environment variable of the system.
(2)/etc/profile: is the environment variable for all users. When the user logs on for the first time, the file is executed. and collect the shell settings from the configuration file of the/ETC/PROFILE.D directory.
(3)/ETC/BASHRC: Executes this file for each user running the bash shell. When the bash shell is opened, the file is read.
(4) ~/.bash_profile: Each user can use this file to enter the shell information dedicated to their own use, when the user log on, the file is only executed once! By default, he sets some environment variables to execute the user's. bashrc file.
(5) ~/.BASHRC: This file contains bash information dedicated to your bash shell, which is read when you log in and every time you open a new shell.
(6) ~/.bash_logout: Executes the file each time it exits the system (exiting the bash shell). In addition, the variables set in/etc/profile (global) can be applied to any user, while the variables set in ~/.BASHRC, etc. (local) only inherit variables from/etc/profile, they are "parent-child" relationships.
(7) ~/.bash_profile is the interactive, login way into bash run ~/.BASHRC is the interactive non-login way into bash normally the two settings are roughly the same, so the former usually calls the latter.
environment variable configuration for Linux