mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2025-10-29 17:32:10 +01:00
7 lines
102 B
Text
7 lines
102 B
Text
|
|
#!/bin/sh
|
||
|
|
for profile in ~/.profile.d/*.sh; do
|
||
|
|
if [ -x "$profile" ]; then
|
||
|
|
source $profile
|
||
|
|
fi
|
||
|
|
done
|