ansible-role--bashrc/templates/bashrc.jinja2

13 lines
216 B
Plaintext
Raw Normal View History

2015-11-17 11:07:59 +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