Data Preparer for Bible Corpus
October 15, 2015 ยท View on GitHub
#!/bin/sh for f in *.xml.gz; do if [ $f == "English.xml.gz" ] ; then continue; fi
python makeplaintext.py $f English.xml.gz;
done
October 15, 2015 ยท View on GitHub
#!/bin/sh for f in *.xml.gz; do if [ $f == "English.xml.gz" ] ; then continue; fi
python makeplaintext.py $f English.xml.gz;
done