I was trying to copy to a file with the name having a german character and it fails. Here is the sample script
use strict;
use IO::File;
use File::Copy;
my $output = IO::File->new("> C:/temp/op.txt");
my $input = IO::File->new("< C:/temp/ip.txt") or die "could not open file for input\n";
my $ln...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.