in reply to why IPC::Open3 can't execute MS-DOS "dir" command?

You have a race condition.

The child is waiting for the pipe to empty so it can print out more.

The parent is waiting for the child to end before emptying the pipe.

  • Comment on Re: why IPC::Open3 can't execute MS-DOS "dir" command?

Replies are listed 'Best First'.
Re^2: why IPC::Open3 can't execute MS-DOS "dir" command?
by Anonymous Monk on Dec 07, 2009 at 01:35 UTC
    That might be the problem, do you know how can I solve it? thanks
      Yes, don't launch a program to get a directory listing. Two other posts in this thread discuss alternatives: moritz's and afoken's