зеркало из https://github.com/github/ruby.git
19 строки
380 B
Batchfile
Executable File
19 строки
380 B
Batchfile
Executable File
@echo off
|
|
:optloop
|
|
if "%1" == "-f" shift
|
|
if "%1" == "-r" (shift & set recursive=1 & goto :optloop)
|
|
if "%recursive%" == "1" goto :recursive
|
|
:begin
|
|
if "%1" == "" goto :end
|
|
set p=%1
|
|
if exist "%p:/=\%" for %%I in ("%p:/=\%") do @del "%%I"
|
|
shift
|
|
goto :begin
|
|
:recursive
|
|
if "%1" == "" goto :end
|
|
set p=%1
|
|
if exist "%p:/=\%" rd /s /q "%p:/=\%"
|
|
shift
|
|
goto :recursive
|
|
:end
|