From b1e9ddf8e7ca1e72b8a55d4f407f88426976f9cd Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Tue, 05 Jun 2018 16:27:17 -0400 Subject: .bashrc: Execute .bashrc.d/* in the current environment --- diff --git a/.bashrc b/.bashrc index 444e16a..e23c21d 100644 --- a/.bashrc +++ b/.bashrc @@ -38,4 +38,6 @@ if [ -f /etc/bash_completion ]; then . /etc/bash_completion fi -run-parts ~/.bashrc.d +for f in $(run-parts --list ~/.bashrc.d); do + . "${f}" +done -- cgit v0.9.1