diff -r 0e591f806290 -r 8a34b2ebc8cc marking4/mk-advanced --- a/marking4/mk-advanced Tue Dec 03 11:07:09 2019 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,24 +0,0 @@ -#!/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 - -