#!/usr/bin/perl
for ($i=0; $i<=10000; $i++) {
open(FIL, ">$i") || die;
print FIL "x"x1000;
close FIL;
}