| Newsgroups |
perl.cvs.perlfaq |
| Message-ID |
<[email protected]> |
cvsuser 02/06/16 21:44:52
Modified: . perlfaq5.pod
Log:
re-wrapped a long line. no big whoop
Revision Changes Path
1.19 +3 -3 perlfaq/perlfaq5.pod
Index: perlfaq5.pod
===================================================================
RCS file: /cvs/public/perlfaq/perlfaq5.pod,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -w -r1.18 -r1.19
--- perlfaq5.pod 30 May 2002 07:04:25 -0000 1.18
+++ perlfaq5.pod 17 Jun 2002 04:44:52 -0000 1.19
@@ -1,6 +1,6 @@
=head1 NAME
-perlfaq5 - Files and Formats ($Revision: 1.18 $, $Date: 2002/05/30 07:04:25 $)
+perlfaq5 - Files and Formats ($Revision: 1.19 $, $Date: 2002/06/17 04:44:52 $)
=head1 DESCRIPTION
@@ -444,8 +444,8 @@
=head2 How can I reliably rename a file?
-If your operating system supports a proper mv(1) utility or its functional
-equivalent, this works:
+If your operating system supports a proper mv(1) utility or its
+functional equivalent, this works:
rename($old, $new) or system("mv", $old, $new);