Gil, My apologies. Pipes in here meant BatchPipes. SUBSYS is a Jcl parameter. Here is a sample to write to an unix pipe. This job will create a pipe with 2000 records.
//HFSDAT1 EXEC PGM=SORT //SORTDIAG DD DUMMY //SYSOUT DD SYSOUT=* //SORTIN DD * CCCC BBBB //SORTOUT DD PATH='/tmp/HFSINP', // LRECL=80,BLKSIZE=3200,RECFM=FB,DSNTYPE=PIPE, // PATHOPTS=(OWRONLY,OCREAT), // PATHMODE=(SIWUSR,SIRUSR), // PATHDISP=(KEEP,DELETE) //SYSIN DD * OPTION COPY OUTFIL REPEAT=1000 //* Thanks, Kolusu DFSORT Development IBM Corporation IBM Mainframe Discussion List <[email protected]> wrote on 06/06/2014 12:05:37 PM: > From: Paul Gilmartin <[email protected]> > To: [email protected], > Date: 06/06/2014 12:05 PM > Subject: Re: Any need? DFSORT interface to C language > Sent by: IBM Mainframe Discussion List <[email protected]> > > On Fri, 6 Jun 2014 10:47:46 -0700, Sri h Kolusu wrote: > > >>>Do you know if DFSORT supports allocating SORTIN and SORTOUT to UNIX > >pipes (FIFOs)? > >John, > > > >Yes you can. Check this example > > > > http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/ice1ca60/11.5.11 > > > Is them UNIX pipes or "BatchPipes"? For the former, I'd expect to see such as > "//SORTIN DD PATH='/...'". > > What's "SUBSYS=PIPE"? What's "SUBSYS=BP01"? > > "publibz"? Not InfoCenter? > > -- gil > > ---------------------------------------------------------------------- > For IBM-MAIN subscribe / signoff / archive access instructions, > send email to [email protected] with the message: INFO IBM-MAIN > ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN
