summaryrefslogtreecommitdiff
path: root/gs/src/rm.cmd
diff options
context:
space:
mode:
authorHenry Stiles <henry.stiles@artifex.com>1998-07-26 07:36:41 +0000
committerHenry Stiles <henry.stiles@artifex.com>1998-07-26 07:36:41 +0000
commiteec0ef527f18c5978c4476c9490f4de4c4249628 (patch)
tree5588d5e1300a245186594893c930949a19bcbbce /gs/src/rm.cmd
parentd4bdba93ef34f68d27148e1b31088d1d3e786e8c (diff)
downloadghostpdl-eec0ef527f18c5978c4476c9490f4de4c4249628.tar.gz
Initial revision
git-svn-id: http://svn.ghostscript.com/ghostpcl/trunk/ghostpcl@246 06663e23-700e-0410-b217-a244a6096597
Diffstat (limited to 'gs/src/rm.cmd')
-rwxr-xr-xgs/src/rm.cmd9
1 files changed, 9 insertions, 0 deletions
diff --git a/gs/src/rm.cmd b/gs/src/rm.cmd
new file mode 100755
index 000000000..ec73ac552
--- /dev/null
+++ b/gs/src/rm.cmd
@@ -0,0 +1,9 @@
+@echo off
+:next
+if '%1'=='' goto exit
+if '%1'=='-f' goto sh
+erase %1
+:sh
+shift
+goto next
+:exit