Move bash files

This commit is contained in:
2021-03-24 17:48:24 +00:00
parent 03bc920b74
commit 1c49c7cecb
5 changed files with 8 additions and 8 deletions

View File

@@ -6,23 +6,23 @@ if [ -f /etc/bashrc ]; then
fi
# Source exports, if it exists
if [ -f $HOME/.bash/exports.bash ]; then
source $HOME/.bash/exports.bash
if [ -f $HOME/.config/bash/exports.bash ]; then
source $HOME/.config/bash/exports.bash
fi
# Source functions, if it exists
if [ -f $HOME/.bash/functions.bash ]; then
source $HOME/.bash/functions.bash
if [ -f $HOME/.config/bash/functions.bash ]; then
source $HOME/.config/bash/functions.bash
fi
# Source aliases, if it exists
if [ -f $HOME/.bash/aliases.bash ]; then
source $HOME/.bash/aliases.bash
if [ -f $HOME/.config/bash/aliases.bash ]; then
source $HOME/.config/bash/aliases.bash
fi
# Source completions, if it exists
if [ -f $HOME/.bash/completions.bash ]; then
source $HOME/.bash/completions.bash
if [ -f $HOME/.config/bash/completions.bash ]; then
source $HOME/.config/bash/completions.bash
fi
# Homebrew