ansible-role--bashrc/files/bashrc

13 lines
216 B
Bash
Raw Normal View History

2015-11-17 13:20:58 +00:00
##
## BASH RC - every new shell
## 
if [ -d "$HOME/.bashrc.d" ]; then
for script in $(find "$HOME/.bashrc.d/" -name '*.sh' |sort -n) ; do
# echo "Loading `basename \"$script\"`..." # >&2
. $script
done
fi