summaryrefslogtreecommitdiff
path: root/gs/src/rm.bat
blob: 1b1ecbb962f36b8e3c36c2f42a47b640408468f3 (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
if exist %1 erase %1
:sh
shift
goto next
:exit