Updated UNIX certification WAS: z/OS 3.1: Now UNIX® Certified

2023-06-08 Thread David Frenzel
Since the current email thread has evolved away from this announcement I felt it would make sense to open a separate one. I can see that z/OS 2.1 received the same certification back in 2013 (https://www.opengroup.org/openbrand/register/brand3601.htm). Timothy, are you stating that z/OS 3.1 now

Re: Windows FTPS client

2021-07-29 Thread David Frenzel
I use WinSCP for accessing OMVS / UNIX files via SFTP and FileZilla to access z/OS datasets through FTPS. It has worked for me quite well even though I'm technically using two different tools. Cheers - David Am 29.07.21, 16:47 schrieb "IBM Mainframe Discussion List im Auftrag von Joe Monk" :

AW: Rocket's Git and GitHub Enterprise

2021-08-05 Thread David Frenzel
What you can do is host a Git server instance e.g. on Linux for Z. This way you don't have to move your assets off the machine. If moving something off the platform is not the concern but rather who can access it then I'd suggest to restrict the repositories to the people that need to know. GitH

AW: EXTERNAL EMAIL: Re: zPDT Learner's Edition

2021-09-29 Thread David Frenzel
It took some days for me to put some thought into this pricing aspect. From a guy who is fascinated with the entire Z platform and all the things there to discover I am totally going to get the license. As long as IBM decides to make it available in Germany, of course. Now, if I put myself 5 ye

AW: z/OS port of gawk

2022-01-26 Thread David Frenzel
Still reading through old messages after vacation and saw this. Thanks, David! Do you mind sharing the process of building the binary? I can see that instructions for building gawk from source on z/OS actually exist: gawk/README.zos at master · redondos/gawk · GitHub

Execute ASMA90 with tsocmd fails

2025-02-05 Thread David Frenzel
Hi, I am trying to execute the assembler ASMA90 with tsocmd from a shell script in USS. My shell script is simple: #!/bin/sh export sysin="alloc dsname('IBMUSER.BMSPDSE(BMS)') shr reuse" export TSOALLOC=sysin export syslin="alloc dsname('IBMUSER.PROG.OBJ') shr reuse" export TSOALLOC=syslin:$TSO

Re: Execute ASMA90 with tsocmd fails

2025-02-06 Thread David Frenzel
There are a couple of emails I want to reply to. I'll try to put it into one. > Also I would expect > tsocmd -d "call *(asma90)" Thank you! That does the trick. Somehow, ASMA90 was still executing without the CALL but something got overwritten that messed up SYSIN. With the CALL it works correc