## Source POSIX login session startup scripts
for path in "$HOME/.profile.d/"*".sh"
do
  if [ -r "$path" ]
  then
    . "$path"
  fi
done
unset path