dotfiles/home/bash/.bashrc
2024-12-29 22:20:56 +01:00

9 lines
148 B
Bash

# shellcheck shell=bash
for rc in /etc/bashrc /etc/*.bashrc; do
if [[ -e $rc ]]; then
# shellcheck disable=SC1090
source "$rc"
fi
done