12 lines
180 B
Bash
12 lines
180 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# ~/.bash_profile
|
|
#
|
|
|
|
# [[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
for DOTFILE in `find /home/matt/Repos/.dotfiles`
|
|
do
|
|
[ -f "$DOTFILE" ] && source "$DOTFILE"
|
|
done
|