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