#!/bin/sh

for f in /etc/profile.d/*.sh; do
	if [ -x "$f" ]; then
		. $f
	fi
done; unset f
