11 lines
162 B
Bash
11 lines
162 B
Bash
# .bashrc
|
|
|
|
# Source global definitions
|
|
if [[ -r /etc/bashrc ]]; then
|
|
. /etc/bashrc
|
|
fi
|
|
|
|
# Source .bashrc.d
|
|
for file in ~/.bashrc.d/*.bashrc; do
|
|
. "$file"
|
|
done
|