D
David Bruno
Hi,
I'm using this script to copy one directory into another:
#!/usr/bin/perl
$from = "/full/path/to/source";
$to = "/full/path/to/destination";
`cp -R $from $to`;
print "Done";
The directory gets copied, but the browser diplays a 500 error
instead of "Done". why would this be?
thanks,
David
I'm using this script to copy one directory into another:
#!/usr/bin/perl
$from = "/full/path/to/source";
$to = "/full/path/to/destination";
`cp -R $from $to`;
print "Done";
The directory gets copied, but the browser diplays a 500 error
instead of "Done". why would this be?
thanks,
David