#!/bin/bash

for i in {0..10}
do
  ii=$(printf "%02d" $i)
  wget http://www.statmt.org/paracrawl-benchmarks/doc-set-et.part$ii.tar
done
