I want to read from a file, but Perl (internally) must not escape the string i read. E.g. of a line in file:
'c:\temp'
This line is then handled as 'c:\\temp' - which I do not want.
(Of course when using 'print $line' it automatically "unescapes" the line, but that is of no use to me.
The second solution would be to read the file as is, and then "UnEscape" the text, but... how :)
I'd appreciate the help.