blob: 01b0ae7269e83d5b396f489bcbcdb87ae01e8878 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
echo hej > out_1
echo hej > out_2
while diff out_1 out_2; do
echo -n .
python gen.py -2147483648 2147483647 > max
"$1" < max > out_1
"$2" < max > out_2
done
|