in reply to Re^2: Help with splitting one text file into other text filesin thread Help with splitting one text file into other text files
use autofilecache; use autodie; my @Fs; for(1..1024){ open my($f),'<',$_; push @Fs, $f; } [download]