You'll need to lock the file while you're appending to it. You'll probably want to open the file in append mode to do this, which should tell your OS to be cleverer about going to the end of the file before writing, and then rewind it to the beginning. Here's a brief demo:
use warnings;
use strict;
use Fcntl ':flock';
our $talkfile="t44.talk";
open(TRANSCRIPT,"+>>$talkfile")
or die "Client can't open transcript file: $!";
# Read the file with a shared lock
flock(TRANSCRIPT,LOCK_SH)
or die "Couldn't lock transcript: $!\n";
seek(TRANSCRIPT,0,0)
or die "Couldn't rewind transcript file: $!\n";
print <TRANSCRIPT>;
# Write the file with an exclusive lock
flock(TRANSCRIPT,LOCK_EX);
print TRANSCRIPT "ran at ",time,"\n";
# Unlock the file when you're done
flock(TRANSCRIPT,LOCK_UN);
The lock will be released automatically when your program exits, so it's OK to die while holding the lock. Opening the file in append mode will tell perl or the OS to seek to the end of the file before writing anything.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.