please find below the code I have written to read a text file from a TPL it is showing error "not well-formed (invalid token) " at (my $allButtons = <$file_handle> ) please let me know the correct way of reading a .txt file at the earliest, thanks in advance..[HTML] open my $file_handle,'/app/mass1/teamsite/iw-home/iw-perl/bin/text_names.txt' or die "Scotty can't be slurped:\n$!"; local $/; # Set input to "slurp" mode. my $allButtons = <$file_handle>; close(<$file_handle>);[/HTML]