I have script like this:

open(INFILE,"<","words.txt") my @X; while(<INFILE>){ push @X,(split(/\s+/,$_))[0]; ### choosing particluar column and pu +shing all its values in single array } $a = 0; $main = 'temp.txt'; $mod = 'temp_mod.txt'; for (0..$#X) { $b = $main; open b ; open NEWFILE1, ">$mod" ; while (<b>) { / $X[$a] / or print NEWFILE1 } close NEWFILE1; $main = $mod; $mod = $b; $a++; }

What it is doing: it is removing lines having "words" in single column in words.txt file. Which are stored in array @X. It opens file temp.txt, removes first word and save it in file temp_mod.txt. this later file is used again to remove second word from @X array and this loop runs by opening and closing temp.txt and temp_mod.txt

I have lot many words and many lines in file (60mb). So opening, removing line, closing, opening cycle consumes lot of time. Can I just open once a file and remove all lines together having words stored in words.txt


In reply to how to avoid opening and closing files by sagar_qwerty

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.