dotfiles/home/bash/.bashrc

9 lines
148 B
Bash
Raw Normal View History

2024-12-29 21:20:56 +00:00
# shellcheck shell=bash
for rc in /etc/bashrc /etc/*.bashrc; do
if [[ -e $rc ]]; then
# shellcheck disable=SC1090
source "$rc"
fi
done