From 86e39d7d2858df4e45eac192041d5cb3bd87000e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zsb=C3=A1n=20Ambrus?= Date: Sun, 9 Jun 2013 10:50:06 -0400 Subject: [PATCH] use more descriptive examples in File::Copy --- lib/File/Copy.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/File/Copy.pm b/lib/File/Copy.pm index 19a5838..b64f609 100644 --- a/lib/File/Copy.pm +++ b/lib/File/Copy.pm @@ -22,7 +22,7 @@ sub syscopy; sub cp; sub mv; -$VERSION = '2.26'; +$VERSION = '2.27'; require Exporter; @ISA = qw(Exporter); @@ -435,9 +435,9 @@ File::Copy - Copy files or filehandles 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"; -- 1.8.3.1