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 >
Wrap
DOS Batch File
|
1993-07-01
|
948b
|
27 lines
@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 CLP142.DOC goto nodoc
list CLP142.DOC
cls
goto end
:nolist
echo.
echo Der Dateilister 'LIST.EXE' ist nicht vorhanden!
echo.
goto end
:nodoc
echo.
echo Die Dokumentation 'CLP142.DOC' ist nicht vorhanden!
echo.
:end
echo.
REM ┌─────────────────────────────────────────────────────────────────────────┐
REM │ Ende der Batchdatei 'DOKU' │
REM └─────────────────────────────────────────────────────────────────────────┘