dotfiles/shell/load

7 lines
102 B
Text
Raw Normal View History

2017-01-26 13:48:55 +01:00
#!/bin/sh
for profile in ~/.profile.d/*.sh; do
if [ -x "$profile" ]; then
source $profile
fi
done