in reply to UNIX shell commands in Windows
use File::Copy; my $file1 = "test1.txt"; my $file2 = "test2.txt"; copy ( "$file1", "$file2" ) or die "Copy failed: $!"; [download]
Cheers,
Brent