sub cp;
sub mv;
-$VERSION = '2.26';
+$VERSION = '2.27';
require Exporter;
@ISA = qw(Exporter);
use File::Copy;
- copy("file1","file2") or die "Copy failed: $!";
+ copy("sourcefile","destinationfile") or die "Copy failed: $!";
copy("Copy.pm",\*STDOUT);
- move("/dev1/fileA","/dev2/fileB");
+ move("/dev1/sourcefile","/dev2/destinationfile");
use File::Copy "cp";