in reply to
Re^4: Overwriting temp file
in thread
Overwriting temp file
'+>' means that you want both read and write access, but note that it clobbers the file first. For a read/write update that doesn't clobber the file first, do '+<', for non-text files mostly. See:
open
.
Comment on
Re^5: Overwriting temp file
In Section
Seekers of Perl Wisdom