Re: xargs -0 irony (was: Expand DSN names)

2025-03-29 Thread Paul Gilmartin
On Sat, 29 Mar 2025 16:53:11 -0500, Jay Maynard \ wrote: >They left -0 out of xargs?! REALLY, IBM? Merciful $DEITY. That, coupled >with find -print0, solve a great big pile of issues and security holes. > There's an alternative for POSIX shells:

Does anyone have GIMAPI in working status?

2025-03-29 Thread Jasi Grewal
Greetings,  I am looking for GIMAPI REXX, but the version available in CBT FILE788 no longer works under z/OS v2r4 or above because it cannot capture results in OUTTRAP, and some GIMFILTER options do not work either. I would be interested to know if anyone has a working environment for GIMAPI.

Re: xargs -0 irony (was: Expand DSN names)

2025-03-29 Thread Jay Maynard
They left -0 out of xargs?! REALLY, IBM? Merciful $DEITY. That, coupled with find -print0, solve a great big pile of issues and security holes. On Sat, Mar 29, 2025 at 4:37 PM Paul Gilmartin < 042bfe9c879d-dmarc-requ...@listserv.ua.edu> wrote: > On Fri, 28 Mar 2025 11:05:05 -0400, Rick Troth

Re: Reentrant Lite ?

2025-03-29 Thread Bernd Oppolzer
yes, that's exactly what LE does. The PL/1 logic was copied for C and later became LE. At the beginning of every function (or procedure), the function prologue checks if the remaining space in the current stack segment is sufficient for the needs of the new function. If so, the next available

Re: Office 365

2025-03-29 Thread billog...@optonline.net
>Reading about the Up Grade process to move Office 2010 to Office 365 does not >give >Me any comfort. Especially when it says de-install Office 2010. >Any suggestions, since I just want the newest Outlook? Like many of us, I have started seeing more failures in my Windows 10 system, including m

Re: Volume in a SG - search

2025-03-29 Thread Radoslaw Skorupka
I want to thank all the gentlemen, who helped me (onlist and offlist). I appreciate it! Shame on me - I knew two ways, but I forgot. It was busy Friday. Regards -- Radoslaw Skorupka Lodz, Poland W dniu 28.03.2025 o 15:28, Radoslaw Skorupka pisze: I know how to list DASD volumes belonging to

Re: Volume in a SG - search

2025-03-29 Thread גדי בן אבי
Does the command D SMS,VOL(ABC123) provide the information? If you have SYSVIEW from Broadcom, the command SPACE ABC123 will provide the information. Gadi From: IBM Mainframe Discussion List on behalf of Radoslaw Skorupka <0471ebeac275-dmarc-requ...@listser

Re: Reentrant Lite ?

2025-03-29 Thread Farley, Peter
Isn't that the main reason to use a "stack" of DSA's as LE does for multiple language implementations? No GETMAIN needed until you run out of "stack", just update "next available byte" pointer in the stack. Peter From: IBM Mainframe Discussion List On Behalf Of Richard Zierdt Sent: Friday, M

xargs -0 irony (was: Expand DSN names)

2025-03-29 Thread Paul Gilmartin
On Fri, 28 Mar 2025 11:05:05 -0400, Rick Troth wrote: >... >Consumer systems REGULARLY have blanks in filenames, which makes >scripted automation difficult. Other punctuation can also be troublesome. > In shell scripts this is facilitated vy: find ... -print0 | xargs -0 ... (all POSIX) And