dotfiles/shell/load
2021-12-06 12:41:02 +01:00

8 lines
132 B
Bash
Executable file

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