diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..31dbbff --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/log diff --git a/bash_profile.sh b/bash_profile.sh index 14eafdf..8def271 100755 --- a/bash_profile.sh +++ b/bash_profile.sh @@ -1,7 +1,9 @@ SELF="$(realpath "${BASH_SOURCE[0]}")" DIR="$(cd "$(dirname "${SELF}")"; pwd -P)" +echo "Processing bashrc" > "${DIR}/log" for d in $(ls "${DIR}"/*/profile); do - source "${d}" + echo "Loading ${d}" >> "${DIR}/log" + source "${d}" >> "${DIR}/log" done