in reply to Extracting from Multiple Files
Use these to make some script, and when you have something we'll comment on it to help you make it better/function ;-)my @array = (); for $file ( qw(file1 file2 file3) ){ open(IN,'<',$file) while(IN){ chomp; split; } close (IN) }
|
---|