home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / UTIL_ARC / QAZ_230.ZIP / QAZ-DEMO.EXE / QFC.BAT < prev    next >
DOS Batch File  |  1994-01-13  |  247b  |  16 lines

  1. @echo off
  2.  
  3. rem QFC.BAT - Use QAZ to compare the contents of two archives.
  4.  
  5. qaz %1 /vqn /on > qfc1.$$$
  6. qaz %2 /vqn /on > qfc2.$$$
  7.  
  8. fc /c /w qfc1.$$$ qfc2.$$$ > qfc3.$$$
  9.  
  10. more < qfc3.$$$
  11.  
  12. erase qfc3.$$$
  13. erase qfc2.$$$
  14. erase qfc1.$$$
  15.  
  16.