NekoX/run

14 lines
179 B
Bash
Executable File

#!/bin/bash
EXEC=""
TARGET="bin"
for e in $@; do
TARGET="$TARGET/$e"
shift
if [ -x "${TARGET}.sh" ]; then
EXEC="${TARGET}.sh"
fi
done
echo ">> $EXEC"
exec "$EXEC" $@