docs creating files via open
Tom Phoenix [Thu, 18 Jun 1998 23:37:32 +0000 (16:37 -0700)]
Message-ID: <Pine.GSO.3.96.980618231856.17544S-100000@user2.teleport.com>

p4raw-id: //depot/perl@1168

pod/perlfunc.pod

index 25a97ff..31367ed 100644 (file)
@@ -2127,8 +2127,9 @@ to open.)
 
 If the filename begins with '<' or nothing, the file is opened for input.
 If the filename begins with '>', the file is truncated and opened for
-output.  If the filename begins with '>>', the file is opened for
-appending.  You can put a '+' in front of the '>' or '<' to indicate that
+output, being created if necessary. If the filename begins with '>>',
+the file is opened for appending, again being created if necessary. 
+You can put a '+' in front of the '>' or '<' to indicate that
 you want both read and write access to the file; thus '+<' is almost
 always preferred for read/write updates--the '+>' mode would clobber the
 file first.  You can't usually use either read-write mode for updating