2017-01-26 13:48:55 +01:00
|
|
|
#!/bin/sh
|
2018-05-23 13:33:43 +02:00
|
|
|
|
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
|