FreeDOS/utils/rmfiles.bat

11 lines
144 B
Batchfile
Raw Normal View History

2012-10-15 02:08:06 +02:00
@echo off
:loop_commandline
if \%1 == \ goto done_with_commandline
if exist %1 del %1>nul
shift
goto loop_commandline
:done_with_commandline