Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Working with Subfolder

by Aragorn (Curate)
on May 28, 2004 at 12:35 UTC ( [id://357202]=note: print w/replies, xml ) Need Help??


in reply to Working with Subfolder

Variable @outLines isn't emtpied when the contents of it are written to the file. So the contents of every file are added to it, after which the complete array (including the old contents) is written to adjusted.learn. Instead of having a global @outLines array, you should declare it within the process subroutine:
sub process { my @outLines = (); ... }
Now, every time when process is called, the @outLines array is created afresh.

Another option would be to insert a @outLines = () statement after writing to the adjusted.learn file.

Arjen

Replies are listed 'Best First'.
Re: Re: Working with Subfolder
by Anonymous Monk on May 28, 2004 at 12:42 UTC
    seems to have done the job nicely, thanks!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://357202]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (6)
As of 2024-04-19 03:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found