Help for this page
#!/usr/bin/perl use strict; ... my $source = $ARGV[0]; my $target = $ARGV[1]; copy($source, $target) or die "Can't copy files ($!) ($?)\n";
./copy.pl "testing spaces.txt" output.txt