Create a file on magnetic tape: Difference between revisions

From Rosetta Code
Content added Content deleted
m (classify this as a draft until there are more entries)
Line 1: Line 1:
{{task|File System Operations}}
{{draft task|File System Operations}}


In this task, the job is to create a new file called "TAPE.FILE" of any size on Magnetic Tape
In this task, the job is to create a new file called "TAPE.FILE" of any size on Magnetic Tape

Revision as of 19:32, 22 October 2012

Create a file on magnetic tape is a draft programming task. It is not yet considered ready to be promoted as a complete task, for reasons that should be found in its talk page.

In this task, the job is to create a new file called "TAPE.FILE" of any size on Magnetic Tape


JCL

<lang JCL> // EXEC PGM=IEBGENER //* Create a file named "TAPE.FILE" on magnetic tape; "UNIT=TAPE" //* may vary depending on site-specific esoteric name assignment //SYSPRINT DD SYSOUT=* //SYSIN DD DUMMY //SYSUT2 DD UNIT=TAPE,DSN=TAPE.FILE,DISP=(,CATLG) //SYSUT1 DD * DATA TO BE WRITTEN TO TAPE /* </lang>