12 lines
173 B
Bash
Executable File
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
|