summaryrefslogtreecommitdiff
path: root/gs/base/rm.bat
blob: 033fac566f9e36d2c753b134c3a1726b81ce2772 (plain)
1
2
3
4
5
6
7
8
9
10
11
@rem $Id$
@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