Borland C++ for Win32 fixes; perl@9359 (also perl@9424)
[p5sagit/p5-mst-13.2.git] / win32 / bin / mdelete.bat
CommitLineData
00b02797 1@echo off
2rem ! This is a batch file to delete all the files on its
3rem ! command line, to work around command.com's del command's
4rem ! braindeadness
5rem !
6rem ! -- BKS, 11-11-2000
7
8:nextfile
9set file=%1
10shift
11if "%file%"=="" goto end
12del %file%
13goto nextfile
14:end
15
e601c439 16@echo off\r
17rem ! This is a batch file to delete all the files on its\r
18rem ! command line, to work around command.com's del command's\r
19rem ! braindeadness\r
20rem !\r
21rem ! -- BKS, 11-11-2000\r
22\r
23:nextfile\r
24set file=%1\r
25shift\r
26if "%file%"=="" goto end\r
27del %file%\r
28goto nextfile\r
29:end\r
30\r