marking1/tails
author Christian Urban <urbanc@in.tum.de>
Tue, 18 Dec 2018 23:31:45 +0000
changeset 250 1b08b8ac13fd
parent 243 9bb36426c781
permissions -rwxr-xr-x
updated

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

trap "exit" INT

files=${1:-assignment20177-*}

for sd in $files; do
  cd $sd
  #echo $sd
  tail -1 output
  cd ..
done