marking4/mk-postfix
author Christian Urban <urbanc@in.tum.de>
Wed, 05 Feb 2020 12:24:27 +0000
changeset 332 703c7e42bf46
parent 329 8a34b2ebc8cc
permissions -rwxr-xr-x
updated

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

trap "exit" INT

files=${1:-assignment2019-*/Part8/*}

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 ..
  cd ..
done