On 2019-01-25, at 13:40:12, Alain Benvéniste wrote:
> Rob
> I thought to use a pipe reader file to read it back but if it is not long to 
> show me I would be glad to know how to do that for a receive.
> Many files are in transit so performance is a plus.
>  
Have you looked at:
    
https://www.ibm.com/support/libraryserver_os390/BOOKS/HCSH1C00/9.5?DT=20090727132928
    9.5 NETDATA Format

     /* DEBNET REXX -- Deblock a reader file in NETDATA format.           */
     'callpipe',
        'reader',                /* From reader                           */
        '| find' '41'x||,        /* Only data records                     */
        '| specs 2-* 1.80',      /* Discard channel command and pad to 80 */
        '| deblock netdata',     /* Deblock                               */
        '| find' 'c0'x||,        /* Only data records                     */
        '| specs 2-* 1',         /* Remove control character              */
        '| *:'

-- gil

Reply via email to