... I have it running by creating a temporary file and use that as input for the program. Writing to stdin and reading the result from stdout does not work whatever I do. On the command line (cmd.exe) it works flawlessly, just not like that from the RB shell.
The linkage between the file and the program's standard input is done by the shell. This is _not_ the RealBasic Shell object, but instead the _real_ command shell). The RB Shell object has a confusing name: it really corresponds to the Unix exec call. So, to make standard input work, you need to put a command shell in the middle. Cdraig _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
