in reply to Re^9: Using STDIN after exec() with ActiveState Perl
in thread Using STDIN after exec() with ActiveState Perl

No, when I use exec I always have only one perl process running at the same time. If I use system, I end up with several processes running at the same time (+1 each time I run system $^X, $0).

Replies are listed 'Best First'.
Re^11: Using STDIN after exec() with ActiveState Perl
by Anonymous Monk on Jun 21, 2015 at 21:06 UTC
    Yeah thats true, but the point remains, if you want STDIN to work, don't use exec
      Indeed, that's what I realized with my problem already, but I was just hoping someone would have found a workaround for this ActiveState perl specific problem.