home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of the Best
/
_.img
/
02043
/
kfz
/
drucke.bat
< prev
next >
Wrap
DOS Batch File
|
1992-02-01
|
1KB
|
32 lines
@echo off
REM ┌─────────────────────────────────────────────────────────────────────────┐
REM │ (C) Copyright Erich Schuster 1992 │
REM │ │
REM │ Batch zum Drucken einer Textdatei │
REM └─────────────────────────────────────────────────────────────────────────┘
cls
if '%1' == '' goto noparm
if not exist %1 goto error
echo:
echo Bitte den Drucker einschalten und Papier einlegen...
pause
type %1 > prn
goto end
:noparm
echo
echo █▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█
echo █ Beim Aufruf von 'DRUCKE' die zu druckende █
echo █ Datei mitgeben, z.B. 'drucke info.txt' █
echo █ █
echo ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
echo:
goto end
:error
echo
echo:
echo Fehler: Die Datei %1 existiert nicht !
echo ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
echo:
echo:
:end