11 lines
174 B
Bash
Executable file
11 lines
174 B
Bash
Executable file
#!/bin/bash
|
|
|
|
export WORKDIR="."
|
|
export MKLIVE=$(dirname $0)
|
|
|
|
[ -n "$1" ] || exit 0
|
|
SCRIPT=$1
|
|
shift
|
|
|
|
[ -x "${MKLIVE}/scripts/$SCRIPT.sh" ] && ${MKLIVE}/scripts/$SCRIPT.sh $@
|
|
|