home *** CD-ROM | disk | FTP | other *** search
/ Taifun Collection / Taifun_Collection_Vol_1.iso / richter / 8417 / 8417.mhs / RICHTER.DTP / CLP142 / !CLP142.EXE / DOKU.BAT < prev    next >
DOS Batch File  |  1993-07-01  |  948b  |  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 CLP142.DOC goto nodoc
  10. list CLP142.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 'CLP142.DOC' ist nicht vorhanden!
  21. echo.
  22. :end
  23. echo.
  24. REM ┌─────────────────────────────────────────────────────────────────────────┐
  25. REM │                       Ende der Batchdatei 'DOKU'                        │
  26. REM └─────────────────────────────────────────────────────────────────────────┘
  27.