home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / OL.LZH / UNLOAD.BAT < prev   
DOS Batch File  |  1991-10-08  |  838b  |  31 lines

  1. echo off
  2. echo This script unloads Version 8.1 of the Icon program library.
  3. echo ...
  4. echo LHARC.EXE should be in your search path. There is a copy on this diskette
  5. echo if you do not already have a one.
  6. echo ...
  7. echo Be sure your current directory is where you want the Icon program library
  8. echo to be echo rooted. The commands that follow assume the Icon program library
  9. echo diskette (DL) is mounted an the drive given as an argument.
  10. echo If you want to unload the files differently, abort with
  11. echo control-break or control-c and edit this file to suit your needs.
  12. pause
  13. echo on
  14. mkdir ipl
  15. cd ipl
  16. mkdir data
  17. mkdir procs
  18. mkdir progs
  19. mkdir idol
  20. cd data
  21. lharc x %1data.lzh
  22. cd ..\procs
  23. lharc x %1procs.lzh
  24. copy %1trans.bat
  25. cd ..\progs
  26. lharc x %1progs.lzh
  27. copy %1comp.bat
  28. cd ..\idol
  29. lharc x %1idol.lzh
  30. cd ..\..
  31.