Add startup scripts

This commit is contained in:
Sasha Koshka
2023-11-14 16:30:32 -05:00
parent daa80065c6
commit 1a60d903b2
5 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/sh
if [ -z "$XMD_STARTUPDIR" ]; then
echo "!!! \$XMD_STARTUPDIR not set"
exit 1
fi
for item in $XMD_STARTUPDIR/*; do
if [ -x "$item" ]; then
"$item" &
fi
done