marking1/tails
author Christian Urban <urbanc@in.tum.de>
Sun, 16 Dec 2018 21:43:14 +0000
changeset 249 1997cfcd6334
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