aboutsummaryrefslogtreecommitdiff
path: root/bash_profile
blob: 5f231cc216ec8a65d34410368ab3bf0a5371949c (plain)
1
2
3
4
5
6
7
for script in ${HOME}/.bash_profile.d/*; do
  if [ -r "${script}" ]; then
    . "${script}"
  fi
done

[ -f "${HOME}/.bashrc" ] && . "${HOME}/.bashrc"