There are two initialization files .bash_profile and .bashrc that are present in the user's home directory.
.bash_profile is initialized at login with a user ID .. bashrc is initialized when you are already logged in and want to open another terminal.
If you want to add some parameters to both files, you can do the following
if [ -f ~/.bashrc ]; then source ~/.bashrc fi
Manish singh
source share