Skip to content

mdechiaro/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 

Repository files navigation

dotfiles

A collection of dotfiles

Setup .bashrc.d

By default, some Linux distributions support loading ${HOME}/.bashrc code snippets from a ".d" directory. To enable it in others that do not support this feature, then create ${HOME}/.bashrc.d folder, and add the below code to ${HOME}/.bashrc.

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

About

dotfiles

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published