home *** CD-ROM | disk | FTP | other *** search
/ TopWare Tools / TOOLS.iso / tools / top1230 / doku.bat < prev    next >
Encoding:
DOS Batch File  |  1993-06-30  |  954 b   |  27 lines

  1. @echo off
  2. REM ┌─────────────────────────────────────────────────────────────────────────┐
  3. REM │  DOKU               Batchdatei von E. Schuster      (C) Copyright 1993  │
  4. REM │                                                                         │
  5. REM │  Aufruf: DOKU       Listet die Dokumentation auf                        │
  6. REM └─────────────────────────────────────────────────────────────────────────┘
  7. cls
  8. if not exist list.exe goto nolist
  9. if not exist AKTIE231.DOC goto nodoc
  10. list AKTIE231.DOC
  11. cls
  12. goto end
  13. :nolist
  14. echo.
  15. echo Der Dateilister 'LIST.EXE' ist nicht vorhanden!
  16. echo.
  17. goto end
  18. :nodoc
  19. echo.
  20. echo Die Dokumentation 'AKTIE231.DOC' ist nicht vorhanden!
  21. echo.
  22. :end
  23. echo.
  24. REM ┌─────────────────────────────────────────────────────────────────────────┐
  25. REM │                       Ende der Batchdatei 'DOKU'                        │
  26. REM └─────────────────────────────────────────────────────────────────────────┘
  27.