home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 31 / CDASC_31_1996_juillet_aout.iso / vrac / fact127.zip / MAKETINY.BAT < prev    next >
DOS Batch File  |  1996-05-23  |  564b  |  27 lines

  1. ::
  2. ::  This is just a simple batch file to automate the use of DDA's
  3. ::  "FACT" and "SMALLEST" programs.
  4. ::
  5. ::  It will convert the specified archives to all preset extenstions,
  6. ::  and delete ALL except the smallest archive.
  7. ::
  8. ::  Edit the first "set xts=" line below to set your desired extensions.
  9. ::
  10. echo off
  11. if NOT "%1"=="" goto start
  12. echo.
  13. echo  Batch:  MakeTiny
  14. echo.
  15. echo  Usage:  MakeTiny  _files_to_convert_
  16. echo.
  17. goto end
  18. :start
  19. cls
  20. set xts=.arj .lzh .zip
  21. fact %1 %xts% -quiet
  22. smallest %1 %xts%
  23. set xts=
  24. echo.
  25. echo Done!
  26. :end
  27.