After starting a bash terminal, I noticed that the PATH variable contains duplicate entries. My terminal starts a login shell, so ~/.bash_profile is sourced, followed by ~/.profile and ~/.bashrc. Only in ~/.profile do I create the paths entries which are duplicated.
To be pedantic, this is the order in which the files that SHOULD be sourced are being sourced:
Sourced /etc/profile
Sourced /etc/bash.bashrc
Sourced .bash_profile
Sourced .profile
Sourced .bashrc
Before anyone marks this as a duplicate of "PATH variable contains duplicates", keep reading.
At first I thought this had to do with ~/.profile being sourced twice, so I had the file write to a log file whenever it was sourced, and surprisingly it only logged one entry, which tells me that it was only sourced once. Even more surprising is the fact that when I comment out the entries which were in ~/.profile, the entries still appear in the PATH variable. This has led me to three conclusions, one of which was quickly ruled out:
- Bash ignores valid bash comments and still executes the commented code
- There is a script which reads the
~/.profileand ignores any code that prints an output (the log file for example) - There is another copy of my
~/.profilewhich is being sourced elsewhere
The first one, I quickly concluded not to be the case due to some quick testing. The second and third options are where I need help with.
How do I gather a log of scripts which are executed when my terminal starts up? I used echo in the files that I checked to know if they are sourced by bash, but I need to find a conclusive method which traces the execution up the point when the terminal is ready for me to start typing into it.
If the above is not possible, then can anyone suggest where else I can look to see which scripts are being run.
For future reference, this is the script I now use for adding to my path:
function add_to_path() {
for path in ${2//:/ }; do
if ! [[ "${!1}" =~ "${path%/}" ]]; then # ignore last /
new_path="${!1%:}:$path"
export "$1"="${new_path#:}" # remove leading :
fi
done
}
I use it like this:
add_to_path 'PATH' "/some/path/bin"
The script checks if the path already exists before appending it to the variable.