You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

antRun 124B

12345678910111213
  1. #! /bin/sh
  2. # Args: DIR command
  3. cd $1
  4. CMD=$2
  5. shift
  6. shift
  7. if test -f $CMD.sh; then
  8. CMD="sh $CMD.sh"
  9. fi
  10. echo $CMD $@ | sh