dots/bash_profile.sh

9 lines
168 B
Bash
Raw Normal View History

2019-02-22 13:13:19 +11:00
SELF="$(realpath "${BASH_SOURCE[0]}")"
DIR="$(cd "$(dirname "${SELF}")"; pwd -P)"
source "${DIR}/bashrc.sh"
for d in $(ls "${DIR}"/*/profile); do
source "${d}"
done