in reply to multiple fork()
Using pipes to do all of the dirty work of IPC is great. Whoever made IO::Pipe and IO::Select (Graham Barr i think) made life wonderful. change @commands to whatever you want and you are done.#!/usr/bin/perl use IO::Select; use IO::Pipe; my $select = IO::Select->new(); my @commands = ("echo 1", "echo 2", "echo 3", "echo 4", "echo 5", ); foreach ( @commands ){ my $pipe = IO::Pipe->new(); my $pid = fork; die "Bad Fork $!" unless defined $pid; ### parent if( $pid ){ $pipe->reader(); $select->add( $pipe ); ### child }else{ $pipe->writer(); $pipe->autoflush(1); print $pipe "PID $$: COMMAND $_\n"; print $pipe `$_`; # do the command exit; } } my $num = 0; while( my @responses = $select->can_read(0) ){ die "Timedout [$!]\n" unless @responses; my $pipe = $responses[ rand @responses ]; print STDOUT while <$pipe>; print "------------------------------------------------\n"; $select->remove( $pipe->fileno() ); last if ++$num >= @commands; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: multiple fork()
by Rhandom (Curate) on Apr 16, 2001 at 23:10 UTC | |
by tye (Sage) on Apr 16, 2001 at 23:41 UTC | |
by Dominus (Parson) on Apr 17, 2001 at 03:55 UTC | |
by tye (Sage) on Apr 17, 2001 at 05:33 UTC | |
by Rhandom (Curate) on Apr 17, 2001 at 00:29 UTC | |
by tye (Sage) on Apr 17, 2001 at 00:32 UTC | |
by Rhandom (Curate) on Apr 17, 2001 at 00:55 UTC | |
|