marking4/mk-advanced
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Mon, 05 Aug 2019 20:14:06 +0100
changeset 269 86a85865e772
parent 257 ba4d976ca88d
permissions -rwxr-xr-x
updated

#!/bin/sh
###set -e

trap "exit" INT

files=${1:-assignment20189-*}

for sd in $files; do
  cd $sd
  echo $sd
  touch .
  cp ../../../marking4/postfix_test.sh .
  cp ../../../marking4/postfix_test7.scala .
  cp ../../../marking4/postfix_test8.scala .
  cp ../../../marking4/postfix_test9.scala .
  ./postfix_test.sh output
  rm postfix_test.sh
  rm postfix_test7.scala
  rm postfix_test8.scala
  rm postfix_test9.scala
  cd ..
done