in reply to Problem printing contents of file
open(FILE, '<', '/frame.txt') or die $!; while(<FILE>) { print $_, "\n"; } close(FILE); [download]