home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / UTIL_ARC / QAZ_230.ZIP / QAZ-DEMO.EXE / READ.ME < prev    next >
Text File  |  1994-01-16  |  4KB  |  97 lines

  1. The files in this archive are some barebones demonstrations of some of the 
  2. special features of QAZ.  They are standard, no-frills DOS batch files
  3. meant to show what QAZ can be used for.
  4.  
  5. They are covered under the same license and disclaimer as the rest of the
  6. QAZ package.  (Again, no gurantees of any sort are made for these files).
  7.  
  8. The exception is that you may modify and distribute these (assuming you 
  9. make any improvements) so long as you distribute them seperately from the 
  10. QAZ distribution archive.
  11.  
  12. If you improve them or write new batch (as well as .BTM or .AWK) files,
  13. or seperate executables/utilities which make use of QAZ, drop me a line 
  14. and let me know (my address is in the QAZ.DOC file).
  15.  
  16. UNQAZ.BAT 
  17. ---------
  18.   Usage: UNQAZ archive.ext
  19.      ie: UNQAZ FOO-BAR.ZIP
  20.  
  21.   This batch file demonstrates the use of the /r (Return exit code).
  22.   It uses QAZ to identify the archiver and then calls the appropriate
  23.   utility to unarchive the file.
  24.  
  25.   You may have to do a bit of customizing is you use different utilities.
  26.  
  27. QAZTEST.BAT     
  28. -----------
  29.   Usage: UNQAZ archive filespec
  30.      ie: UNQAZ FOO-BAR *.TXT
  31.  
  32.   This batch uses QAZ to generate a bare-bones listing which it then
  33.   sends to PKUNZIP to use as a pick-list file for testing the archives.
  34.  
  35. QFIND.BAT       
  36. ---------
  37.   Usage: QFIND disk filespec
  38.      ie: QFIND C: FOO{0-9}.TXT
  39.  
  40.   This file demonstrates recursive-search feature of QAZ.  It will search
  41.   all recognized archives on the specified disk for the filespec you give.
  42.   It also demonstrates the use of the QAZSPEC variable and extended file-
  43.   specs (Rather than type each possible extention individually it uses a
  44.   shorthand that describes several file-extentions at once).
  45.  
  46.   Note that since QAZ v2.29ß you can also use the /us switch instead of
  47.   (or along with) the /ue switch to use the standard, hard-coded file-
  48.   specs.  See the documentation for more info.
  49.  
  50. QAZSPEC.BAT
  51. -----------
  52.   Usage: QAZSPEC
  53.  
  54.   This file just initialized the QAZSPEC environment variable if you don't
  55.   have it set in your AUTOEXEC.BAT file.  The comments also have a brief
  56.   'translation' of the extended filespecs (same as in QFIND.BAT).
  57.  
  58. XQAZ.BAT
  59. --------
  60.   Usage: XQAZ cmd archive datafile
  61.      ie: XQAZ E FOO-BAR.ARK *.*
  62.  
  63.   This file evolved from UNQAZ.BAT and is the barebones of a universal
  64.   archive-viewing/testing/extracting batch file as one can get. Acceptable
  65.   commands are V (view), T (text), E (extract) or S (extract and scan for
  66.   viruses).
  67.  
  68. QFC.BAT
  69. -------
  70.   Usage: QFC archive1 archive2
  71.      ie: QFC FIRST.ZIP SECOND.ZIP
  72.  
  73.   The file will use QAZ to generate an alphabetized listing of each archive
  74.   then then use the DOS FC command to compare the two listings... a sort-of
  75.   no-frills archive comparison utility.
  76.  
  77. QAZENV.EXE
  78. ----------
  79.   Usage: QAZENV
  80.  
  81.   This program shows the contents of the QAZCMD and QAZSPEC environment
  82.   variables--useful to check if any problems you are having with QAZ are
  83.   due to their values.
  84.  
  85. QVIEW.BAT
  86. ---------
  87.   Usage: QVIEW file
  88.      ie: QVIEW TEXT.GZ
  89.  
  90.   This is my favorite QAZ demo, actually.  It uses QAZ to identify a file-- 
  91.   if it's text, it's piped to a text reader (change MORE to your favorite 
  92.   reader).  If it's compressed with GZIP or Unix Compress, it uses GZIP 
  93.   (GNU-Zip) to decompress to stdout (piped through MORE) so that you can 
  94.   read the file: the result is that you can keep frequently read text and 
  95.   info files compressed and yet still e able to read them!
  96.  
  97.