Help for this page
a b ... d e f
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.