summaryrefslogtreecommitdiffstats
path: root/source/a/etc/_etc/etc/profile.d/home-profile.d.sh.new
blob: 23078184fe18a8f4beb2dada6aa821c9f01042b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/bash

if [ -d "$HOME/.profile.d" ]; then
  for i in "$HOME"/.profile.d/*.sh; do
    . "$i"
  done
fi  

unset i