blob: b851cf50b08e33f3da60ffa64f110e61a1aefd49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Do not edit this file.
# Place your readable configs in /etc/profile.d/*.sh
if [[ $- != *i* ]] ; then
# Shell is non-interactive. Be done now!
return
fi
if [ -d /etc/profile.d/ ]; then
for f in /etc/profile.d/*.sh; do
[ -r "$f" ] && . "$f"
done
unset f
fi
|