I've downloaded both. The PIPEs telecourse comes through fine, execpt the REXX course is having problems. I read the readme.txt and it states to open this course with either INDEX.HTM
or TCVM1.HTM ,and when I do I get 'page cannot be displayed". I'm using explorer 6+ and I don't seem to have a problem opening other .htm files in the course. Thanks Mace ________________________________ From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On Behalf Of Kris Buelens Sent: Tuesday, April 24, 2007 9:55 AM To: [email protected] Subject: Re: Using ALL Module and XEDIT in an EXEC ALL is not a MODULE, but an XEDIT macro, it lives on the S-disk as ALL XEDIT. It is compiled, and its source is there too: ALL SXEDIT. Thus, ALL can only be used from inside XEDIT, or from REXX execs that address XEDIT. If you're really using an EXEC, and not an XEDIT macro, you might want to learn some PIPE: 'PIPE < my file A', /* Read the input file */ '|NLOCATE 12-13 /02/', /* remove records woth 02 in cols 12-13 */ '|> my file A' /* Rewrite onto disk */ To learn PIPEs, you may want to read our Telecourse: http://www.vm.ibm.com/download/packages/descript.cgi?TCVM2 To improve your REXX skills there is the REXX Telecourse: http://www.vm.ibm.com/download/packages/descript.cgi?TCVM1 -- Kris Buelens, IBM Belgium, VM customer support 2007/4/24, Brian Nielsen <[EMAIL PROTECTED]>: In an EXEC you need quotes around ALL /02 or the REXX will interpret the '/' as division. This would cause the ALL command to fail - giving the results you observe. As a general rule, anything that is intended to be a literal should be quoted to avoid undesirable substitutions and mis- interpretations. Brian Nielsen On Tue, 24 Apr 2007 08:57:05 -0400, Tracy, David < [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > wrote: >All, > > In an EXEC using XEDIT is there a way to use the ALL MODULE. > >The works fine interactively, > >XEDIT FN FT FM > >SET ZONE 12 13 > >ALL /02 > >DEL * > > > >Interactively all records in columns 12 13 with 02 are deleted; in an >EXEC all the records in the entire file are DELETED with an error >calling the ALL MODULE. > >Thank you... > >...Dave > > ----------------------------------------- ******************************************************************** The information transmitted is intended solely for the individual or entity to which it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of or taking action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you have received this email in error please contact the sender and delete the material from any computer. ********************************************************************
