Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 250 Bytes

README.md

File metadata and controls

13 lines (12 loc) · 250 Bytes

bashrc.d

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