dotfiles/shell/load

9 lines
132 B
Text
Raw Normal View History

2017-01-26 13:48:55 +01:00
#!/bin/sh
2017-01-26 13:48:55 +01:00
for profile in ~/.profile.d/*.sh; do
if [ -x "$profile" ]; then
2021-12-06 12:41:02 +01:00
# shellcheck source=/dev/null
. "$profile"
2017-01-26 13:48:55 +01:00
fi
done