ruby/win32/rm.bat

9 строки
117 B
Batchfile
Executable File

@echo off
if "%1" == "-f" shift
:begin
if "%1" == "" goto :end
if exist "%1" del "%1"
shift
goto :begin
:end