in reply to Bidirectional Communication with Another Process

For future reference, you might also find useful information in the QandASection: programs and processes section of Categorized Questions and Answers.

HTH,

planetscape
  • Comment on Re: Bidirectional Communication with Another Process

Replies are listed 'Best First'.
Re^2: Bidirectional Communication with Another Process
by duc (Beadle) on Jul 24, 2006 at 18:52 UTC

    I have a "way" to do bidirectional communication with an application using something like :
    @ret = `echo 'cin args' | 'program'`;
    It is not working for me because the list of values I have to pass to my exe application is too long (i.e 241 float values) but it works great for reasonably long list (241 int values).

    Maybe it can help someone...