You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<P><B>This module is <FONTCOLOR="#990000">ALPHA</FONT> code, which means that public interfaces are largely untested, and may change in future releases. Use with caution! Please report any errors back to <AHREF="mailto:[email protected]">[email protected]</A> as soon as you can.</B><UL>
9
10
<LI><AHREF="#NAME">NAME</A>
10
11
<LI><AHREF="#SYNOPSIS">SYNOPSIS</A>
11
12
<LI><AHREF="#DESCRIPTION">DESCRIPTION</A>
@@ -29,19 +30,19 @@
29
30
use IO::AtomicFile;
30
31
</PRE></FONT>
31
32
<FONTSIZE=3FACE="courier"><PRE>
32
-
# Write a temp file, and have it install itself when closed:
33
+
### Write a temp file, and have it install itself when closed:
33
34
my $FH = IO::AtomicFile->open("bar.dat", "w");
34
35
print $FH "Hello!\n";
35
36
$FH->close || die "couldn't install atomic file: $!";
36
37
</PRE></FONT>
37
38
<FONTSIZE=3FACE="courier"><PRE>
38
-
# Write a temp file, but delete it before it gets installed:
39
+
### Write a temp file, but delete it before it gets installed:
39
40
my $FH = IO::AtomicFile->open("bar.dat", "w");
40
41
print $FH "Hello!\n";
41
42
$FH->delete;
42
43
</PRE></FONT>
43
44
<FONTSIZE=3FACE="courier"><PRE>
44
-
# Write a temp file, but neither install it nor delete it:
45
+
### Write a temp file, but neither install it nor delete it:
45
46
my $FH = IO::AtomicFile->open("bar.dat", "w");
<P><B>This module is <FONTCOLOR="#990000">ALPHA</FONT> code, which means that public interfaces are largely untested, and may change in future releases. Use with caution! Please report any errors back to <AHREF="mailto:[email protected]">[email protected]</A> as soon as you can.</B><UL>
<P><B>This module is <FONTCOLOR="#990000">ALPHA</FONT> code, which means that public interfaces are largely untested, and may change in future releases. Use with caution! Please report any errors back to <AHREF="mailto:[email protected]">[email protected]</A> as soon as you can.</B><UL>
9
10
<LI><AHREF="#NAME">NAME</A>
10
11
<LI><AHREF="#SYNOPSIS">SYNOPSIS</A>
11
12
<LI><AHREF="#DESCRIPTION">DESCRIPTION</A>
@@ -33,7 +34,7 @@
33
34
use IO::Lines;
34
35
</PRE></FONT>
35
36
<FONTSIZE=3FACE="courier"><PRE>
36
-
# See IO::ScalarArray for details
37
+
### See IO::ScalarArray for details
37
38
</PRE></FONT>
38
39
39
40
@@ -59,15 +60,15 @@
59
60
newlines appropriately.
60
61
61
62
62
-
<P>See <AHREF="../IO/ScalarArray.pm.html">IO::ScalarArray</A> for full usage.
63
+
<P>See <AHREF="../IO/ScalarArray.pm.html">IO::ScalarArray</A> for full usage and warnings.
0 commit comments