mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2025-05-24 11:04:41 +02:00
6 lines
102 B
Bash
Executable file
6 lines
102 B
Bash
Executable file
#!/bin/sh
|
|
for profile in ~/.profile.d/*.sh; do
|
|
if [ -x "$profile" ]; then
|
|
source $profile
|
|
fi
|
|
done
|