cdit 82 B

12345678910
  1. #! /bin/sh
  2. cd $1
  3. PROG=$2
  4. shift 2
  5. rm -f *.lib *.a
  6. $PROG $*
  7. RET=$?
  8. cd ..
  9. exit $RET