home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / ibm370 / iktgup.txt < prev    next >
Text File  |  2020-01-01  |  1KB  |  26 lines

  1. )F FUNCTION -
  2.  
  3.   The GUPI command invokes GUPI-TSO, an assembly language program
  4. which performs updates on line-numbered source files using a control
  5. file syntax similar to that of IBM's UPDATE program for CMS.  The
  6. main difference is that GUPI performs multiple updates in a single
  7. invocation by reading all the updates from a single, sequential, input
  8. control file.
  9.  
  10. )X SYNTAX -
  11.          GUPI 'source-dsn' 'update-dsn' 'output-dsn' MARK('mark')
  12.                    STOR/NOSTOR  SEQ8/NOSEQ8
  13.    Required - 'source-dsn', 'update-dsn', 'output-dsn'
  14.    Defaults - STOR, SEQ8
  15.  
  16. )O OPERANDS -
  17. ))SOURCE-DSN - fully or partially qualified DSN of base file.
  18. ))UPDATE-DSN - fully or partially qualified DSN of update control file.
  19. ))OUTPUT-DSN - fully or partially qualified DSN of output file.
  20. ))STOR - specifies that the update is to be performed in memory.
  21. ))NOSTOR - specifies that the update is to performed disk-to-disk.
  22. ))SEQ8 - specifies that the sequence numbers occupy columns 73-80.
  23. ))NOSEQ8 - specifies that the sequence numbers occupy columns 76-80.
  24. ))MARK - gives the 3-byte string to fill columns 73-75 if NOSEQ8.
  25.  
  26.