I think OP's problems were sufficiently pointed out. I was wondering if lexical file handles (open my $fh vs. open FILE) might be useful. What I found was that I successfully separated the input filehandle pointer from the output filehandle pointer, but the input filehandle stopped at the original eof instead of moving on through the new file contents. Could some wiser monks explain that to me?

C:\chas_sandbox>for %f in (a b c d) Do echo %f>>alpha.txt C:\chas_sandbox>echo a 1>>alpha.txt C:\chas_sandbox>echo b 1>>alpha.txt C:\chas_sandbox>echo c 1>>alpha.txt C:\chas_sandbox>echo d 1>>alpha.txt C:\chas_sandbox>perl -le "open my $fh_in, '<', 'alpha.txt'; open my $f +h_out, '>> ', 'alpha.txt';while (<$fh_in>) {chomp;print $fh_out chr(ord($_)+4); l +ast if $_ eq 'v'}" C:\chas_sandbox>type alpha.txt a b c d e f g h


#my sig used to say 'I humbly seek wisdom. '. Now it says:
use strict;
use warnings;
I humbly seek wisdom.

In reply to Re: read from a file and write into the same file by goibhniu
in thread read from a file and write into the same file by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.