in reply to Displaying text file with perl/tk

put your file in an array and tail it to the text widget:
open FILE, "filename" my @file = <FILE>; for my $line (@file) { $text->insert('end', $line); }
----------------------------------- --the good, the bad and the physi-- -----------------------------------