mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2025-05-24 19:14:39 +02: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
|