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

13 lines
216 B
Plaintext
Raw Permalink Normal View History

2024-07-12 12:12:40 +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