README.MVS
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:4k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. [Notes accompanying first beta of the MVS port; still mostly applicable
  2.  to the UnZip 5.2 release.  Somebody with an MVS system will have to
  3.  update this file.]
  4. Thank you for trying this first port of UNZIP for VM/CMS and MVS!
  5. This is the first beta so there might be some bugs in it.
  6.                         Using under MVS:
  7.                     -------------------------
  8. 1. To use the Info-ZIP's UNZIP under MVS you need:
  9.    - C/370 ver 2.1 compiler or another compatible compiler supporting
  10.      long names for function/variable names.
  11. 2. To compile the program under MVS do :
  12.    - unzip all the files from unz52vm.zip file. They are stored as
  13.      ASCII format so you have to unzip them first on PC or other
  14.      system that already have UNZIP, and then upload them to the
  15.      mainframe with ASCII to EBCDIC conversion.
  16.    - Copy all the .C files in the PDS called youruserid.UNZIP.C
  17.    - Copy all the .H files in the PDS called youruserid.UNZIP.H
  18.    - adjust the job UNZMVSC.JOB to work on your size. Change my
  19.      userid - C888090 to yours
  20.    - execute the job UNZMVSC to compile and link all the sources.
  21.    - maybe you have to preallocate PDS datasets named:
  22.      youruserid.UNZIP.OBJ and youruserid.UNZIP.LOAD
  23.    - if everything is ok you will get an UNZIP MODULE
  24. 3. Using UNZIP
  25.    - Just read the UNZIP.DOC
  26.    - A few exceptions concerning MVS
  27.      3.0. There are different ways to invoke UNZIP.
  28.         - allocating UNZIP.LOAD dataset to your ISPLLIB if you
  29.           want to invoke UNZIP under ISPF.
  30.           Then just type UNZIP ...parms... to get it work
  31.         - You can also call it directly with :
  32.              TSO CALL 'userid.UNZIP.LOAD(UNZIP)' '...parms...'
  33.              (notice to quotes!)
  34.         - You can even call it from a batch job like:
  35.           //MYZIP    JOB  (account)
  36.           //STEP1    EXEC PGM=UNZIP,PARM='-l mytestz.zip *.c'
  37.           //STEPLIB  DD DSN=userid.UNZIP.LOAD,DISP=SHR
  38.           //SYSPRINT DD SYSOUT=*
  39.           This will list all the .c files from the zip file mytestz.zip
  40.      3.1. If the ZIP file has been zipped on an ASCII based system
  41.           it will be automatically translated to EBCDIC
  42.           ( I hope I got all those translation tables OK :-)
  43.      3.2. The date/time of the output files is set to the
  44.           current system date/time - not according the date/time in
  45.           the zip file.
  46.      3.3. You can even unzip using TSO/E PIPELINES
  47.           so unzip can be used as pipeline filter:
  48.           'pipe cms unzip -p test.zip george.test | count lines | cons'
  49.           ( we do also a lot of pipethinking here ;-)
  50.      3.4. If you got also the ZIP program (see ZIP21VM.ZIP) you can
  51.           do zipping and unzipping without translating to ASCII
  52.           the ZIP also preserves the file informations (LRECL,BLKSIZE..)
  53.           So when you UNZIP a file zipped with ZIP under MVS it
  54.           restores the file info.
  55.           There currently some problems with file with RECFM=V*
  56.           I don't save the length of each record yet :-)
  57.      3.5. No wildcards are supported in the input zip name you have
  58.           to give the real name (.zip is not necessary)
  59.           So you CAN'T use things like: unzip -t *.zip
  60.      3.6. But you CAN use wildcards as filename selection like:
  61.           unzip -t myzip *.c  - OK or even
  62.           unzip -t myzip *.c -x z*.c  - to exclude all files matching
  63.                                         z*.c
  64.      3.7. You can unzip to a PDS using the -d parameter after the zip name
  65.           for example:
  66.            UNZIP myzip *.c -dmyzip
  67.           This will unzip all .c files that are in the zip file in a
  68.           PDS directory called MYZIP.C
  69.           BE AWARE that the extension of every files is being placed as
  70.           last identifier on the PDS name, so if you have a file
  71.           in the zipfile called 'testp.doc' and you use '-d mypds'
  72.           the PDS name will become 'mypds.doc(testp)'
  73.       3.8. All text files under MVS are created with record length 133.
  74.           This is due to a bug in the fopen that makes it always 1028
  75.       3.9. All '+','_' or '-' signs are skipped from the filenames
  76. Please repport all bugs and problems to :
  77.      Zip-Bugs@lists.wku.edu
  78. That's all for now.
  79. Have fun!
  80. George Petrov
  81. e-mail: c888090@nlevdpsb.snads.philips.nl
  82. tel: +31-40-781155
  83. Philips C&P
  84. Eindhoven
  85. The Netherlands