This repository has been archived on 2024-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
linux/.bashrc

19 lines
280 B
Bash
Executable file

#!/bin/bash
#home="/var/home/voronind"
home="${HOME}"
module="${home}/.linux/bash/module/*.sh"
# src default
if [[ -f /etc/bashrc ]]; then
source /etc/bashrc
fi
# src custom
for file in ${module}; do
source "${file}"
done
# alias to reload
alias bashrc="source ~/.bashrc"