mirror of
https://github.com/FDOS/kernel.git
synced 2025-04-08 17:15:17 +02:00
11 lines
144 B
Batchfile
11 lines
144 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
|
|
|