mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-04-13 09:30:06 +00:00
16 lines
354 B
Bash
16 lines
354 B
Bash
# ~/.bashrc: executed by bash(1) for non-login shells.
|
|
|
|
# If not running interactively, don't do anything
|
|
[ -z "$PS1" ] && return
|
|
|
|
if [[ -d "${HOME}/.commonsh" ]] ; then
|
|
for file in "${HOME}"/.commonsh/* ; do
|
|
source $file
|
|
done
|
|
fi
|
|
|
|
if [[ -d "${HOME}/.bash" ]] ; then
|
|
for file in "${HOME}"/.bash/* ; do
|
|
source $file
|
|
done
|
|
fi
|