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 163B

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