yangxinsci1993
edit interface
6e4fc64
raw
history blame contribute delete
No virus
225 Bytes
#!/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