5 lines
84 B
Bash
5 lines
84 B
Bash
for f in /etc/profile.d/*.sh; do
|
|
if [ -f "$f" -a -r "$f" ]; then
|
|
. "$f"
|
|
fi
|
|
done
|