blob: 096711e4fa07fa551a91955a0ba00c39ea813f37 (
plain) (
tree)
|
|
# -*- shell-script -*-
if test -r ~/.config/profile; then
. ~/.config/profile
fi
if test -r ~/.config/bash/"profile-$(hostname)"; then
. ~/.config/bash/"profile-$(hostname)"
fi
if test -r ~/work/.config/bash/profile; then
. ~/work/.config/bash/profile
fi
if test -r ~/.config/bash/bashrc; then
. ~/.config/bash/bashrc;
fi
|