diff options
Diffstat (limited to 'win32/bin/mdelete.bat')
-rw-r--r-- | win32/bin/mdelete.bat | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/win32/bin/mdelete.bat b/win32/bin/mdelete.bat index 99b1c3dbf0..0e7e8bda0a 100644 --- a/win32/bin/mdelete.bat +++ b/win32/bin/mdelete.bat @@ -1,18 +1,18 @@ -@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 + @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
|