marking5/tails
author Christian Urban <urbanc@in.tum.de>
Wed, 24 Jul 2019 15:18:44 +0100
changeset 267 9e0216756771
parent 253 ec7a12806c3f
permissions -rwxr-xr-x
updated myassert workaround

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

trap "exit" INT

files=${1:-assignment201810-*}

for sd in $files; do
  cd $sd
  #echo $sd
  marksone=$(( `tail -1 output` ))
  markstwo=$(( `tail -1 output1` ))
  if [ "$marksone" != "$markstwo" ]; then
      echo $sd + "is different"
  fi
  cd ..
done