marking/mk
author Christian Urban <urbanc@in.tum.de>
Thu, 08 Dec 2016 12:50:54 +0000
changeset 85 fd3f8581ce85
parent 81 ff8d075842d5
child 87 9384b8c98014
permissions -rwxr-xr-x
updated
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
64
d6f97b562424 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     1
#!/bin/sh
d6f97b562424 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     2
###set -e
d6f97b562424 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
81
ff8d075842d5 updated
Christian Urban <urbanc@in.tum.de>
parents: 64
diff changeset
     4
trap "exit" INT
64
d6f97b562424 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     5
for sd in k*; do
d6f97b562424 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     6
  cd $sd
d6f97b562424 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     7
  echo $sd
81
ff8d075842d5 updated
Christian Urban <urbanc@in.tum.de>
parents: 64
diff changeset
     8
  #../mark
ff8d075842d5 updated
Christian Urban <urbanc@in.tum.de>
parents: 64
diff changeset
     9
  ../mark01b
64
d6f97b562424 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    10
  cd ..
d6f97b562424 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    11
done
d6f97b562424 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    12
d6f97b562424 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    13