Files
dotfiles/.bash_profile
matt 9309faae74 Basic dotfiles
Still need to put these into folders expected by bash_profile and install.sh
2023-10-02 18:56:13 +02:00

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