home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / email / nfile13c.zip / NEW.BAT next >
DOS Batch File  |  1993-11-06  |  1KB  |  30 lines

  1. @echo off
  2. if %1.==. goto error
  3. if %2.==. goto error
  4. rem *****************************************************************
  5. rem *  This BAT file presumes that you have a \JUNK\NEW and a       *
  6. rem *  \JUNK\OLD directory.                                         *
  7. rem *****************************************************************
  8. echo y | del \junk\new
  9. echo y | del \junk\old
  10. pkunzip -o \down\%1 \junk\new newfiles.dat
  11. pkunzip -o \down\%2 \junk\old newfiles.dat
  12. cd \junk
  13. rem *****************************************************************
  14. rem * NEWFILES.exe must be in your DOS path, or in JUNK directory.  *
  15. rem *****************************************************************
  16. nfiles new\newfiles.dat old\newfiles.dat > files.dif
  17. rem *****************************************************************
  18. rem *             INSERT YOUR OWN EDITOR OR LISTER HERE             *
  19. rem *****************************************************************
  20. list files.dif
  21. goto exit
  22. :error
  23. echo * I need NEWQWK and OLDQWK file names as parameters, eg...
  24. echo *      new crs.qwk  crs1.qwk
  25. echo *
  26. echo * In this example crs1.qwk is the OLDER one.
  27. echo.
  28. echo.
  29. :exit
  30.