File size: 225 Bytes
6e4fc64
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
#!/bin/bash

for n in 1 2 3 4 5 6 7 8 9 10
do 
    echo '------------------------------------------------------------'
    echo $n
    echo "test/$n.txt"
    python test.py --input="test/$n.txt" | diff - test/$n.gold.txt
done