summaryrefslogtreecommitdiff
path: root/base/rm.bat
blob: cb6119035540e4a4e638aceecef96afb7f8c3448 (plain)
1
2
3
4
5
6
7
8
9
10
@echo off
:next
if '%1'=='' goto exit
if '%1'=='-f' goto sh
if '%1'=='-r' goto sh
if exist %1 erase /Q %1
:sh
shift
goto next
:exit