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