summaryrefslogtreecommitdiff
path: root/common/rm.bat
blob: e6c40f6733d234b0e2b20d2b56162128409666f8 (plain)
1
2
3
4
5
6
7
8
9
10
@rem $Id$
@echo off
:next
if '%1'=='' goto exit
if '%1'=='-f' goto sh
erase %1
:sh
shift
goto next
:exit