summaryrefslogtreecommitdiff
path: root/win32/rm.bat
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
commit5923a2c0e770515a9c7144c50e09a32350695b00 (patch)
tree66882c2ac60d7d1b25bb49ee476cb829695aa906 /win32/rm.bat
parent8e773df6d3b68caf2e56e6c75a8e48bf2ccc1bd3 (diff)
This commit was manufactured by cvs2svn to create branch 'ruby_1_8'.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6109 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32/rm.bat')
-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 0000000000..c7307617ee
--- /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