Xmd/session/src/xmd-run-startup-items
2023-11-14 16:30:32 -05:00

12 lines
173 B
Bash
Executable File

#!/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