aboutsummaryrefslogtreecommitdiff
path: root/src/config/files/shell/.bashrc
blob: 2161b1304961ebbffd7b6da5fdfd8f065dda9b2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# .bashrc

# Source global definitions
if [ -f /etc/bashrc ]; then
    . /etc/bashrc
fi

# User specific aliases and functions
if [ -d ~/.bashrc.d ]; then
    for rc in ~/.bashrc.d/*; do
        if [ -f "$rc" ]; then
            . "$rc"
        fi
    done
fi
unset rc