#!/bin/bash

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