#!/bin/bash

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