9 lines
168 B
Bash
Executable File
9 lines
168 B
Bash
Executable File
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
|