5 lines
96 B
Bash
5 lines
96 B
Bash
for DOTFILE in `find /home/ahosking/.dotfiles`
|
|
do
|
|
[ -f "$DOTFILE" ] && source "$DOTFILE"
|
|
done
|