This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Make 'compile' target a little less broken.
[perl5.git] / win32 / bin / mdelete.bat
1 @echo off
2 rem ! This is a batch file to delete all the files on its
3 rem ! command line, to work around command.com's del command's
4 rem ! braindeadness
5 rem !
6 rem !    -- BKS, 11-11-2000
7
8 :nextfile
9 set file=%1
10 shift
11 if "%file%"=="" goto end
12 del %file%
13 goto nextfile
14 :end
15
16 @echo off\r
17 rem ! This is a batch file to delete all the files on its\r
18 rem ! command line, to work around command.com's del command's\r
19 rem ! braindeadness\r
20 rem !\r
21 rem !    -- BKS, 11-11-2000\r
22 \r
23 :nextfile\r
24 set file=%1\r
25 shift\r
26 if "%file%"=="" goto end\r
27 del %file%\r
28 goto nextfile\r
29 :end\r
30 \r