show/hide this revision's text 2 added 233 characters in body
#!/usr/bin/perl
use strict;

open(OUTPUT, "yes|");

date|") or die "Failed to create process: $!\n";

while (<OUTPUT>)
{
  print;
}

close(OUTPUT);

print "Process exited with value " . ($? >> 8) . "\n";

This will start the process yesdate and pipe the output of the command to the OUTPUT filehandle which you can process a line at a time. When the command is finished you can close the output filehandle and retrieve the return value of the process. Replace yesdate with whatever you want.

show/hide this revision's text 1
#!/usr/bin/perl
use strict;

open(OUTPUT, "yes|");

while (<OUTPUT>)
{
  print;
}

This will start the process yes and pipe the output of the command to the OUTPUT filehandle which you can process a line at a time. Replace yes with whatever you want.