in reply to split file and put contents in variables?
my @entries = split /\s+/, $line; my ($x, $y, $z) = split /\s+/, $line; [download]