For this example, I'm just using some random time stamps as keys for each log, but you could use anything that makes sense for your app. Again, I'd be inclined to use separate variables for stderr and stdout of each child, but maybe that's not necessary in your case.
(Minor update: I changed the numeric range in the second "for" loop, so that entry # 4 is also the fourth entry.)#!/usr/bin/perl use strict; use warnings; my %logs; for ( 0 .. 2 ) { my $id = time(); open( $logs{$id}{fh}, '>', \$logs{$id}{var} ) or die "open failed +on # $_: $!\n"; sleep int(rand(3)) + 1; # (i.e. for a small but variable number o +f seconds) } printf "log-file ids are: %s\n\n", join( " ", sort keys %logs ); for ( 1 .. 12 ) { my $id = ( keys %logs )[ int(rand(3)) ]; print "Sending entry # $_ to log $id\n"; print {$logs{$id}{fh}} "this is log event # $_\n"; } print "\n"; # How many entries per log? for my $id ( sort keys %logs ) { my @entries = split( /\n/, $logs{$id}{var} ); printf "log_id %s got %d entries\n", $id, scalar @entries; } print "\n"; # Which log got entry #4? for my $id ( sort keys %logs ) { next unless ( $logs{$id}{var} =~ /4/ ); print "Here is the log for $id, containing the fourth entry:\n$log +s{$id}{var}\n"; }
In reply to Re^3: How to capture process and redirect STDOUT in a hash
by graff
in thread How to capture process and redirect STDOUT in a hash
by thanos1983
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |