in reply to Re^5: part - split up files according to column value
in thread part - split up files according to column value

I'm not sure why you interpret what I wrote:

instead of open $file{$key}{fh}, ..., use:

$file{$key}{fh} = cacheout $file{$key}{name}

as that you should write:

open $file{$key}{fh}, ">", cacheout $file{$key}{name} or die

Maybe you want to reread my node again. I'm also not sure how to phrase it differently so you get what I mean short of writing the program for you which I won't do.

Replies are listed 'Best First'.
Re^7: part - split up files according to column value
by Anonymous Monk on Aug 27, 2008 at 09:12 UTC
    Sorry, It was a long day and I didn't spot that. Thanks for your suggestion. I tried it out and it solved the problem.