fop/lib/bin/antRun
2000-08-09 19:04:49 +00:00

14 lines
163 B
Bash
Executable File

#! /bin/sh
#This file should be executable. -Steve
# Args: DIR command
cd $1
CMD=$2
shift
shift
if test -f $CMD.sh; then
CMD="sh $CMD.sh"
fi
echo $CMD $@ | sh