Re: [U2] Capturing output from a Command line program?

2009-10-23 Thread Norman Bauer
Change the to , currently you are directing the output of your command back to your command. On Fri, Oct 23, 2009 at 1:56 AM, Richard Blackman richard.black...@itvision.com.au wrote: Hi All, I am trying to capture the output from an EXECUTE statement on a command line program but nothing is

Re: [U2] Capturing output from a Command line program?

2009-10-23 Thread George Gallen
] Capturing output from a Command line program? Change the to , currently you are directing the output of your command back to your command. On Fri, Oct 23, 2009 at 1:56 AM, Richard Blackman richard.black...@itvision.com.au wrote: Hi All, I am trying to capture the output from

Re: [U2] Capturing output from a Command line program?

2009-10-23 Thread Norman Bauer
-users- boun...@listserver.u2ug.org] On Behalf Of Norman Bauer Sent: Friday, October 23, 2009 8:02 AM To: U2 Users List Subject: Re: [U2] Capturing output from a Command line program? Change the to , currently you are directing the output of your command back to your command. On Fri, Oct 23

Re: [U2] Capturing output from a Command line program?

2009-10-23 Thread bradley . schrag
In *nix I've used cat. Not sure what the syntax would be in Windows. Here's an attempt: CMD = 'cat ':EMAIL.TEMPFILE:' | C:\usr\lib\sendmail -t' CMD = 'C:\usr\lib\sendmail -t ':EMAIL.TEMPFILE:' -' another option might be to see if sendmail has an option to take it's input from a file,

Re: [U2] Capturing output from a Command line program?

2009-10-23 Thread Rex Gozar
Richard, When Universe shells down via the DOS command, it (Universe) doesn't reliably handle standard output and/or error. The result is that DOS output isn't always captured when EXECUTE'd (it seems to depend on the command). A more reliable strategy is to redirect the command output

Re: [U2] Capturing output from a Command line program?

2009-10-23 Thread Bill Haskett
I thought I'd try this on UniData v7.2 (Windows 2K3). Here's what I get: 4 Dev (0)- BPTEST EXECUTE \!dir\ CAPTURING OUTPUT ; CRT OUTPUT Compiling Unibasic: SAVEDLISTS\BpTest_383842951 in mode 'p'. compilation finished Volume in drive E is ShareDbms Volume Serial Number is C45E-045F

[U2] Capturing output from a Command line program?

2009-10-22 Thread Richard Blackman
Hi All, I am trying to capture the output from an EXECUTE statement on a command line program but nothing is being captured, even though I know there is some output. Here is the command CMD = 'C:\usr\lib\sendmail -t ':EMAIL.TEMPFILE:'' EXECUTE DOS /c:CMD CAPTURING TRASH