blob: 69a19b763722dd45f9ce654b40660fa7875111c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
@echo off
rem ! This is a batch file to delete all the files on its
rem ! command line, to work around command.com's del command's
rem ! braindeadness
rem !
rem ! -- BKS, 11-11-2000
:nextfile
set file=%1
shift
if "%file%"=="" goto end
del %file%
goto nextfile
:end
@echo off
rem ! This is a batch file to delete all the files on its
rem ! command line, to work around command.com's del command's
rem ! braindeadness
rem !
rem ! -- BKS, 11-11-2000
:nextfile
set file=%1
shift
if "%file%"=="" goto end
del %file%
goto nextfile
:end
|