3.1. Significance of .bash_profile
The .bash_profile file contains commands for setting environment variables. Consequently, future shells inherit these variables.
In an interactive login shell, Bash first looks for the /etc/profile file. If found, Bash reads and executes it in the current shell. As a result, /etc/profile sets up the environment configuration for all users.
Similarly, Bash then checks if .bash_profile exists in the home directory. If it does, then Bash executes .bash_profile in the current shell. Bash then stops looking for other files such as .bash_login and .profile.
If Bash doesn’t find .bash_profile, then it looks for .bash_login and .profile, in that order, and executes the first readable file only.
Let’s look into a sample .bash_profile file. Here we’re setting & exporting the PATH variable:
echo "Bash_profile execution starts.."
PATH=$PATH:$HOME/bin;
export PATH;
echo "Bash_profile execution stops.."
We’ll see the below output right before the command prompt on the interactive login shell:
Bash_profile execution starts..
Bash_profile execution stops..
[dsuser@cygnus ~]$
3.2. Significance of .bashrc
.bashrc contains commands that are specific to the Bash shells. Every interactive non-login shell reads .bashrc first. Normally .bashrc is the best place to add aliases and Bash related functions.
The Bash shell looks for the .bashrc file in the home directory and executes it in the current shell using source.