in reply to Re: Edit File in place
in thread Edit File in place

This is not quite what the OP asked. From perlrun:

-i[extension] specifies that files processed by the `<>' construct are to be edited in-place. It does this by renaming the input file, opening the output file by the original name, and selecting that output file as the default for print() statements. The extension, if supplied, is used to modify the name of the old file to make a backup copy, following these rules:
Meaning that -i basically does the same 'trick': open for read, edit, write back.

Replies are listed 'Best First'.
Re: Re: Re: Edit File in place
by Bird (Pilgrim) on Aug 15, 2002 at 18:58 UTC
    This is not quite what the OP asked.

    How? The original post asked for a way to edit a file in place, which this is. This is not the same solution that the original post presented, because it does not entail reading the entire file into an array, then writing it back out. It allows for line by line editing, as well as giving an option for renaming the original. Even if this was the same solution as the original, it's a much more concise form of it, which means you could write a quick one-liner using this version, as opposed to writing out a whole script using the alternative.

    -Bird