home *** CD-ROM | disk | FTP | other *** search
- @echo off
- REM ┌─────────────────────────────────────────────────────────────────────────┐
- REM │ DOKU Batchdatei von E. Schuster (C) Copyright 1993 │
- REM │ │
- REM │ Aufruf: DOKU Listet die Dokumentation auf │
- REM └─────────────────────────────────────────────────────────────────────────┘
- cls
- if not exist list.exe goto nolist
- if not exist AKTIE231.DOC goto nodoc
- list AKTIE231.DOC
- cls
- goto end
- :nolist
- echo.
- echo Der Dateilister 'LIST.EXE' ist nicht vorhanden!
- echo.
- goto end
- :nodoc
- echo.
- echo Die Dokumentation 'AKTIE231.DOC' ist nicht vorhanden!
- echo.
- :end
- echo.
- REM ┌─────────────────────────────────────────────────────────────────────────┐
- REM │ Ende der Batchdatei 'DOKU' │
- REM └─────────────────────────────────────────────────────────────────────────┘