Re: More pipe help, please

2009-08-14 Thread Mike Walter
to The IBM z/VM Operating System IBMVM@LISTSERV.UARK.EDU To IBMVM@LISTSERV.UARK.EDU cc Subject More pipe help, please -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Folks: Building on a number of the good ideas in the How to tell how many linux running on z/VM thread, I just whipped up

More pipe help, please

2009-08-13 Thread Patrick Spinler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Folks: Building on a number of the good ideas in the How to tell how many linux running on z/VM thread, I just whipped up this pipeline: /* */ 'PIPE ( endchar ?) ', 'cp query signals shutdown | drop 2 | specs word 1 1 ', ' | a: lookup

Re: More pipe help, please

2009-08-13 Thread Schuh, Richard
] On Behalf Of Patrick Spinler Sent: Thursday, August 13, 2009 9:39 AM To: IBMVM@LISTSERV.UARK.EDU Subject: More pipe help, please -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Folks: Building on a number of the good ideas in the How to tell how many linux running on z/VM thread, I

Re: More pipe help, please

2009-08-13 Thread Patrick Spinler
Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Patrick Spinler Sent: Thursday, August 13, 2009 9:39 AM To: IBMVM@LISTSERV.UARK.EDU Subject: More pipe help, please Folks: Building on a number of the good ideas in the How to tell how many

Re: PIPE Help (please)

2008-03-14 Thread Kris Buelens
This is the quickest I could come up with. No, not a PIPE this time. Restore of IMPCP, VMCONIO and CPCONIO is a task left to the reader. As opposed to the original code, the command execution order remains the usual CMS, CP /* */ trace o address command 'ERASE $PIPEF$ $TEMP$ A' 'WAKEUP +0

Re: PIPE Help (please)

2008-03-13 Thread Said, Nick
: Thursday, February 07, 2008 1:57 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: PIPE Help (please) I've sent you my VX EXEC VX a non-fullscreen CMS command Output is displayed in XEDIT. VX = View in Xedit Example: VX rac setr list for CP commands you must do VX cp like: VX cp q all

Re: PIPE Help (please)

2008-03-13 Thread Said, Nick
I did say quick AND dirty :) Good point, though. Thanks! -Original Message- From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On Behalf Of Alan Altmark Sent: Thursday, March 13, 2008 2:35 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: PIPE Help (please) On Thursday, 03/13/2008

Re: PIPE Help (please)

2008-03-13 Thread Stracka, James (GTI)
If you make those: '| $pipef$ $temp$ a3 'then you may eliminate the ERASE. -Original Message- From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On Behalf Of Said, Nick Sent: Thursday, March 13, 2008 2:55 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: PIPE Help (please

Re: PIPE Help (please)

2008-03-13 Thread Said, Nick
@LISTSERV.UARK.EDU Subject: Re: PIPE Help (please) On Thursday, 03/13/2008 at 02:29 EDT, Said, Nick [EMAIL PROTECTED] wrote: Here's a quick and dirty one I've been using for years. No thinking if it is a cms or cp command: /*pipef*/ arg cmd ' Pipe cp 'cmd , '| $pipef$ $temp$ a ' If rc

Re: PIPE Help (please)

2008-03-13 Thread Said, Nick
Nice one. Thanks! -Original Message- From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On Behalf Of Stracka, James (GTI) Sent: Thursday, March 13, 2008 3:09 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: PIPE Help (please) If you make those: '| $pipef$ $temp$ a3 'then you

Re: PIPE Help (please)

2008-03-13 Thread Alan Altmark
On Thursday, 03/13/2008 at 05:02 EDT, Said, Nick [EMAIL PROTECTED] wrote: Not to double-nitpipck :) cp q disk HCPCQV003E Invalid option - DISK = I71131 at VMT1 (3); D'oh! Alan Altmark z/VM Development IBM Endicott

Re: PIPE Help (please)

2008-02-07 Thread Imler, Steven J
Sent: Thursday, February 07, 2008 01:42 PM To: IBMVM@LISTSERV.UARK.EDU Subject: PIPE Help (please) I am frustrated with commands generating data that fills multiple screens= and not have the ability to scroll back and forth in the results Thus I thought I'd try something with PIPEs

Re: PIPE Help (please)

2008-02-07 Thread Kris Buelens
Place the XEDIT command outside the PIPE: when XEDIT starts, the PIEP hasn't closed the file yet 2008/2/7, Lionel B. Dyck [EMAIL PROTECTED]: I am frustrated with commands generating data that fills multiple screens and not have the ability to scroll back and forth in the results Thus I

PIPE Help (please)

2008-02-07 Thread Lionel B. Dyck
I am frustrated with commands generating data that fills multiple screens and not have the ability to scroll back and forth in the results Thus I thought I'd try something with PIPEs and came up with this: pipe | cms rac setr list | setr list a | cms xedit setr list a | cms

Re: PIPE Help (please)

2008-02-07 Thread Kris Buelens
If I remember well: RAC writes its output to disk as RACF OUTPUT A and then the disk file is typed at the console. I inherited a RACFAST tool from Steve Swift that avoids this detour via the A-disk. So, if the use of a RACF command is more than an example but key: use FILELIST first. Another

Re: PIPE Help (please)

2008-02-07 Thread Stracka, James (GTI)
:39 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: PIPE Help (please) Why so complicated??? PIPE command rac setr list', '| setr list a' 'XEDIT SETR LIST A' 'ERASE SETR LIST A' (but I repeat: probably not required fro RAC commands) 2008/2/7, Schuh, Richard [EMAIL PROTECTED]: Would adding

Re: PIPE Help (please)

2008-02-07 Thread Harding, Mike
[mailto:[EMAIL PROTECTED] On Behalf Of Schuh, Richard Sent: Thursday, February 07, 2008 11:31 AM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: PIPE Help (please) Would adding a few lines like Pipe | cms rcx setr list, | setr list a, | hole, | append cms xedit setr list a, | append cms

Re: PIPE Help (please)

2008-02-07 Thread Hodge, Robert L
@LISTSERV.UARK.EDU Subject: PIPE Help (please) I am frustrated with commands generating data that fills multiple screens and not have the ability to scroll back and forth in the results Thus I thought I'd try something with PIPEs and came up with this: pipe | cms rac setr list | setr list a | cms

Re: PIPE Help (please)

2008-02-07 Thread David Boyes
I am frustrated with commands generating data that fills multiple screens and not have the ability to scroll back and forth in the results Thus I thought I'd try something with PIPEs and came up with this: [snip] This seemed like it would work but the file is empty when xedit opens it. Try

Re: PIPE Help (please)

2008-02-07 Thread Romanowski, John (OFT)
immediately by reply e-mail and delete the e-mail from your system. -Original Message- From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On Behalf Of Lionel B. Dyck Sent: Thursday, February 07, 2008 1:42 PM To: IBMVM@LISTSERV.UARK.EDU Subject: PIPE Help (please) I am frustrated

Re: PIPE Help (please)

2008-02-07 Thread Kris Buelens
Why so complicated??? PIPE command rac setr list', '| setr list a' 'XEDIT SETR LIST A' 'ERASE SETR LIST A' (but I repeat: probably not required fro RAC commands) 2008/2/7, Schuh, Richard [EMAIL PROTECTED]: Would adding a few lines like Pipe | cms rcx setr list, | setr list

Re: PIPE Help (please)

2008-02-07 Thread Schuh, Richard
Regards, Richard Schuh -Original Message- From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On Behalf Of Kris Buelens Sent: Thursday, February 07, 2008 10:45 AM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: PIPE Help (please) Place the XEDIT command outside the PIPE: when

Re: PIPE Help (please)

2008-02-07 Thread Kris Buelens
Oh yes, I hope there aren't any dangerous commands in the data resulting from CSM RAC SETR LIST. Because: - The output of this RACF command is written to disk by the stage - The stage then copies these data through to CMS XEDIT ... - The CMS stage first executes the XEDIT command passed