| author | Christian Urban <urbanc@in.tum.de> | 
| Wed, 30 Oct 2019 11:51:02 +0000 | |
| changeset 285 | 475c39725698 | 
| parent 227 | 37e659cfbb2e | 
| permissions | -rwxr-xr-x | 
| 168 | 1 | #!/bin/sh | 
| 2 | ###set -e | |
| 3 | ||
| 4 | trap "exit" INT | |
| 5 | ||
| 6 | files=${1:-assignment20177-*}
 | |
| 7 | ||
| 8 | for sd in $files; do | |
| 9 | cd $sd | |
| 10 | echo $sd | |
| 11 | touch . | |
| 12 | cp ../../../marking2/knight3_test.sh . | |
| 13 | cp ../../../marking2/knight3a_test.scala . | |
| 14 | cp ../../../marking2/knight3b_test.scala . | |
| 15 | cp ../../../marking2/knight3c_test.scala . | |
| 16 | ./knight3_test.sh output | |
| 17 | rm knight3_test.sh | |
| 18 | rm knight3a_test.scala | |
| 19 | rm knight3b_test.scala | |
| 20 | rm knight3c_test.scala | |
| 21 | cd .. | |
| 22 | done | |
| 23 | ||
| 24 |