blob: 6f97bc3150c72aeaafe4c3dbc4439e2bb4cd089b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
mkdir -p test/dir1
for ext in foo bar dir1/baz; do \
touch test/${ext}.tex; \
done
sleep 1
for test in foo bar dir1/baz; do \
for ext in pdf ps dvi log aux; do \
touch test/${test}.${ext}; \
done; \
done
sleep 1
touch test/foo.tex
|