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