Hi I am trying to run the below code. I am able to get the output on to the console but unable to print it to the a outputfile. To me everything seems fine. Please help me with this code. I have given example of input_at.txt and input_ac.txt
#!usr/bin/perl use strict; use warnings; use diagnostics; open(FHAT, "input_at.txt") || die("Could not open file!"); open(OUTFH, ">outputfile.log") || die("Could not open file!"); while(<FHAT>){ chomp($_); print "$_\n"; print OUTFH "$_\n"; my ($at,$id1)=split(/\,/, $_); open(FHAC, "input_ac.txt") || die("Could not open file!"); while (<FHAC>){ print "ac $_"; my ($id2,$ac)=split(/\,/, $_); if($id2 == $id1){ print "SUCCESS $at : $ac : $id1"; print OUTFH "SUCCESS $at : $ac : $id1"; } } close (FHAC); } close (FHAT); close (OUTFH);
input_at.txt aaa,1 bbb,2 ccc,3 input_ac.txt 1,a 3,b 2,c

In reply to Unable to write to file by vasavi

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.