in reply to Parsing Info

If I understand correctly you want to parse a file that looks like this:
a b c d e f
Depending on the size of the file I would read it all into a string and slit on /^\n/.
open(FILE,"<some.file"); $string = <FILE>; @array = split(/^\n/,$string); # split where the \n is the first thing + on that line. # then do stuff with each element in @array.

-Silent11