e698ae2b3b
ms-dos/pc-dos command.com does not understand unix line-endings.
11 lines
154 B
Batchfile
11 lines
154 B
Batchfile
@echo off
|
|
:loop_commandline
|
|
|
|
if \%1 == \ goto done_with_commandline
|
|
if exist %1 del %1>nul
|
|
shift
|
|
goto loop_commandline
|
|
|
|
:done_with_commandline
|
|
|