Thanks.
--
Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service: 360-715-2467
rich.smrcina at vmassist.com
http://www.linkedin.com/in/richsmrcina
Catch the WAVV! http://www.wavv.org
WAVV 2009 - Orlando, FL - May 15-19, 2009
----------------------------------------------------------------------
For TSO-REXX subscribe / signoff / archive access instructions,
send email to LIST...@VM.MARIST.EDU with the message: INFO TSO-REXX
--
Regards - Grant
=====================================
Note: Any opinion expressed is my own
Rich Smrcina <rsmr...@WI.RR.COM>
Sent by: TSO REXX Discussion List <TSO-...@VM.MARIST.EDU>
28/10/2008 14:02
Please respond to
TSO REXX Discussion List <TSO-...@VM.MARIST.EDU>
Subject
[TSO-REXX] Issuing z/OS Unix commands from REXX
-----------------------------------------
________________________________________________________
DTCC DISCLAIMER: This email and any files transmitted with it are
confidential and intended solely for the use of the individual or
entity to whom they are addressed. If you have received this email
in error, please notify us immediately and delete the email and any
attachments from your system. The recipient should check this email
and any attachments for the presence of viruses. The company
accepts no liability for any damage caused by any virus transmitted
by this email.
The first question was related to REXX running in TSO, not z/OS Unix.
In a message dated 10/28/2008 7:37:25 A.M. US Mountain Standard Time,
rsmr...@WI.RR.COM writes:
**************Play online games for FREE at Games.com! All of your favorites,
no registration required and great graphics – check it out!
(http://pr.atwola.com/promoclk/100000075x1211202682x1200689022/aol?redir=
http://www.games.com?ncid=emlcntusgame00000001)
Albert
Rich Smrcina <rsmr...@WI.RR.COM>
Gesendet von: TSO REXX Discussion List <TSO-...@VM.MARIST.EDU>
28.10.2008 15:02
Bitte antworten an
TSO REXX Discussion List <TSO-...@VM.MARIST.EDU>
An
TSO-...@VM.MARIST.EDU
Kopie
Thema
[TSO-REXX] Issuing z/OS Unix commands from REXX
VERLAGSGRUPPE WELTBILD GMBH
Sitz der Gesellschaft: Augsburg
Handelsregister Augsburg HRB 6035
Ust-ID-Nr: DE 127501299
Geschäftsführung:
Carel Halff (Vorsitzender), Dr. Klaus Driever, Werner Ortner, Herbert Zoch
Vorsitzender des Aufsichtsrates:
Dr. Klaus Donaubauer
/* REXX */
CALL BPXWUNIX 'RM /U/XXFS/TESTDIR/*.*',,STDOUT.,STDERR.
say "stdout"
do i=1 to stdout.0
say stdout.i
end
say "stderr"
do i=1 to stderr.0
say stderr.i
end
say "end of output"
--
Regards - Grant
=====================================
Note: Any opinion expressed is my own
Rich Smrcina <rsmr...@WI.RR.COM>
Sent by: TSO REXX Discussion List <TSO-...@VM.MARIST.EDU>
28/10/2008 14:36
Please respond to
TSO REXX Discussion List <TSO-...@VM.MARIST.EDU>
Subject
Re: [TSO-REXX] Issuing z/OS Unix commands from REXX
-----------------------------------------
________________________________________________________
DTCC DISCLAIMER: This email and any files transmitted with it are
confidential and intended solely for the use of the individual or
entity to whom they are addressed. If you have received this email
in error, please notify us immediately and delete the email and any
attachments from your system. The recipient should check this email
and any attachments for the presence of viruses. The company
accepts no liability for any damage caused by any virus transmitted
by this email.
----------------------------------------------------------------------
That's exactly what I'm looking for. Thanks for the clarification.