# HG changeset patch # User Christian Urban # Date 1610678871 0 # Node ID 44383203970f5bb857ebd5441e2780062d58b733 # Parent 6e12376913071f4a8d8107d6a73c1f24b8bc4ef2 updated diff -r 6e1237691307 -r 44383203970f pre_marking3/mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pre_marking3/mk Fri Jan 15 02:47:51 2021 +0000 @@ -0,0 +1,28 @@ +#!/bin/bash +set -euo pipefail + + +trap "exit" INT + +files=${1:-*/pre3} + +for sd in $files; do + cd $sd + echo $sd + touch . + cp ../../../../../pre_marking3/postfix_test.sh . + cp ../../../../../pre_marking3/postfix_test1.scala . + cp ../../../../../pre_marking3/postfix_test2.scala . + cp ../../../../../pre_marking3/postfix_test3.scala . + cp ../../../../../pre_marking3/postfix_test4.scala . + ./postfix_test.sh output + rm postfix_test.sh + rm postfix_test1.scala + rm postfix_test2.scala + rm postfix_test3.scala + rm postfix_test3.scala + cd .. + cd .. +done + +