home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 December
/
simtel1292_SIMTEL_1292_Walnut_Creek.iso
/
msdos
/
pcmag
/
vol7n19.arc
/
WIPE.BAT
< prev
next >
Wrap
DOS Batch File
|
1988-10-11
|
334b
|
18 lines
ECHO OFF
CLS
IF "%1" == "" GOTO HELP
ECHO The file %1 is about to be permanently deleted!!
ECHO to exit press [CTRL-BREAK] or
PAUSE
DEL %1
COPY WIPE.DAT %1 > NUL
DEL %1
ECHO %1 deleted
GOTO END
:HELP
ECHO To permanently delete a file, type
ECHO WIPE name
ECHO Where name is the file you wish to wipe
:END