bashrcd/README.md

348 B

bashrcd

Scripts for ~/.basshrc.d

Installation

Clone this repository to ~/.bashrc.d.

git clone https://git.mydevel.at/chris/bashrcd.git ~/.bashrc.d

Add following code to your ~/.bashrc file:

if [ -d ~/.bashrc.d ]; then
    for i in `ls ~/.bashrc.d/*.sh ~/.bashrc.d/*.bash`; do
        [ -f "$i" ] && . "$i"
    done
fi