1
#!/bin/sh
2
###set -e
3
4
trap "exit" INT
5
for sd in k*; do
6
cd $sd
7
echo $sd
8
#../mark
9
../mark01b
10
cd ..
11
done
12
13