#!/usr/bin/env perl
use Modern::Perl;

$_ = $ARGV[0];
chomp;
say "Downloading $_";
`time curl -O "http://a.ddot.cc:8899/$_" | tee /dev/null`

