summaryrefslogtreecommitdiff
path: root/win32/bin/mdelete.bat
blob: 0e7e8bda0a3b6f1c9ca3eb44400ba01078c4aace (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
30
@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