summaryrefslogtreecommitdiffstats
path: root/source/a/etc/_etc/etc/profile.d/home-profile.d.sh.new
diff options
context:
space:
mode:
Diffstat (limited to 'source/a/etc/_etc/etc/profile.d/home-profile.d.sh.new')
-rwxr-xr-xsource/a/etc/_etc/etc/profile.d/home-profile.d.sh.new9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/a/etc/_etc/etc/profile.d/home-profile.d.sh.new b/source/a/etc/_etc/etc/profile.d/home-profile.d.sh.new
new file mode 100755
index 000000000..23078184f
--- /dev/null
+++ b/source/a/etc/_etc/etc/profile.d/home-profile.d.sh.new
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+if [ -d "$HOME/.profile.d" ]; then
+ for i in "$HOME"/.profile.d/*.sh; do
+ . "$i"
+ done
+fi
+
+unset i