1
0
Fork 0
dotfiles/openbsd/etc/profile

5 lines
84 B
Bash

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