summaryrefslogtreecommitdiffstats
path: root/win32
diff options
context:
space:
mode:
author(no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-04-06 08:02:56 +0000
committer(no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-04-06 08:02:56 +0000
commit742581256f6d4a08a0e26b83a0aaf0d5b3063100 (patch)
tree66882c2ac60d7d1b25bb49ee476cb829695aa906 /win32
parent09a8ebe270e3af676f69d5befe47b27d0ceecd23 (diff)
This commit was manufactured by cvs2svn to create branch 'ruby_1_8'.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6109 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rwxr-xr-xwin32/rm.bat9
1 files changed, 9 insertions, 0 deletions
diff --git a/win32/rm.bat b/win32/rm.bat
new file mode 100755
index 000000000..c7307617e
--- /dev/null
+++ b/win32/rm.bat
@@ -0,0 +1,9 @@
+@echo off
+::: $Id: rm.bat,v 1.1 2004/03/21 23:21:30 nobu Exp $
+if "%1" == "-f" shift
+:begin
+if "%1" == "" goto :end
+if exist "%1" del "%1"
+shift
+goto :begin
+:end