FreeDOS/utils/rmfiles.bat
Stas Sergeev e698ae2b3b unix2dos bat files
ms-dos/pc-dos command.com does not understand unix line-endings.
2016-10-06 07:23:59 -04:00

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