dotfiles/shell/load
2017-01-26 13:48:55 +01:00

6 lines
102 B
Bash
Executable file

#!/bin/sh
for profile in ~/.profile.d/*.sh; do
if [ -x "$profile" ]; then
source $profile
fi
done