blob: 8dc994ea50aae9cd0f1a347cabfddbdf1ab5e0ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# vi:syntax=sh
#
# .bash_profile
#
if [[ -f ~/.files ]]; then
source ~/.files
else
DOTFILEBASE="/home/jonas/dotfiles"
fi
for f in $DOTFILEBASE/bash/*.profile ; do
source $f
done
if [[ -f ~/.bashrc ]]; then
source ~/.bashrc
fi
|