home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / MISC / DESIRE15.ZIP / INSTALL.DAT / ADDDIZ.BAT < prev    next >
DOS Batch File  |  1996-11-13  |  555b  |  29 lines

  1. @echo off
  2. REM **************************************************************************
  3. REM
  4. REM ADDDIZ.BAT To add a file description to archives with an FILE_ID.DIZ
  5. REM
  6. REM **************************************************************************
  7. if %2==ZIP goto ZIP
  8. if %2==LHA goto LHA
  9. if %2==LZH goto LHA
  10. if %2==ARJ goto ARJ
  11. if %2==GIF goto GIF
  12. if %2==EXE goto EXE
  13. if %2==DMS goto DMS
  14. goto end
  15.  
  16. :ZIP
  17. pkzip %1 file_id.diz >NUL
  18. goto end
  19.  
  20. :LHA
  21. lha a %1 file_id.diz >NUL
  22. goto end
  23.  
  24. :ARJ
  25. arj a %1 file_id.diz >NUL
  26. goto end
  27.  
  28. :END
  29.