blob: 096711e4fa07fa551a91955a0ba00c39ea813f37 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# -*- 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
|