summaryrefslogtreecommitdiff
path: root/win32/rm.bat
blob: eb415d67f9c02f2142d8eb7b5bfdc74beaa4692b (plain)
1
2
3
4
5
6
7
8
@echo off
if "%1" == "-f" shift
:begin
if "%1" == "" goto :end
if exist "%1" del "%1"
shift
goto :begin
:end