<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/win32/rm.bat, branch v4.0.2</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>Win32: Support removing wildcards in middle of path</title>
<updated>2025-12-02T00:55:01+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2025-01-11T09:26:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=b2b674562db8e922fa6a6bd0469f20f4caf0954e'/>
<id>b2b674562db8e922fa6a6bd0469f20f4caf0954e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Win32: Fix removing symlink</title>
<updated>2025-12-02T00:55:01+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2025-01-10T12:17:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=b0b8eb6a31fbe484319c9fd042433094e0e69c93'/>
<id>b0b8eb6a31fbe484319c9fd042433094e0e69c93</id>
<content type='text'>
Try `rd` first for symlink to a directory; `del` attemps to remove all
files under the target directory, instead of the symlink itself.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Try `rd` first for symlink to a directory; `del` attemps to remove all
files under the target directory, instead of the symlink itself.
</pre>
</div>
</content>
</entry>
<entry>
<title>Win32: Fix rm.bat removing non existent file</title>
<updated>2025-12-02T00:55:01+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2025-01-10T02:55:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=9cdee9db9b3bfc58f773912c072ce7ab78a7d724'/>
<id>9cdee9db9b3bfc58f773912c072ce7ab78a7d724</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>win32: Enable extensions explicitly</title>
<updated>2025-10-09T23:17:58+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2025-10-09T22:37:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=864e8fb029b10bfe2af14d679600d22e33d7ea35'/>
<id>864e8fb029b10bfe2af14d679600d22e33d7ea35</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Win32: Fix rm.bat</title>
<updated>2024-12-31T05:53:07+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2024-12-31T05:53:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=3cd809deb5cc3a534151078166148b9ff5e1c8ef'/>
<id>3cd809deb5cc3a534151078166148b9ff5e1c8ef</id>
<content type='text'>
- `if exist` and `del` ignore directories matching the wildcard,
  remove both separately.

- `rd /s` ignores wildcards, while `del` removes ordinary files by the
  wildcard, iterate over matching directories by `for /D`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- `if exist` and `del` ignore directories matching the wildcard,
  remove both separately.

- `rd /s` ignores wildcards, while `del` removes ordinary files by the
  wildcard, iterate over matching directories by `for /D`.
</pre>
</div>
</content>
</entry>
<entry>
<title>Win32: Rewrite rm.bat</title>
<updated>2024-12-27T07:25:49+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2024-12-27T07:25:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=3a2d1feb1e24569090061bfcab88e3a1ecc24750'/>
<id>3a2d1feb1e24569090061bfcab88e3a1ecc24750</id>
<content type='text'>
`rd` cannot remove ordinary files, use `del` or `rd` for each entry.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`rd` cannot remove ordinary files, use `del` or `rd` for each entry.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix `$(RMALL) -r` on Windows</title>
<updated>2019-11-26T02:44:11+00:00</updated>
<author>
<name>NAKAMURA Usaku</name>
<email>usa@ruby-lang.org</email>
</author>
<published>2019-11-26T02:44:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=7bd7a013b14fb6c4403ff243ec5db13c5c71f552'/>
<id>7bd7a013b14fb6c4403ff243ec5db13c5c71f552</id>
<content type='text'>
`set recursive=1 &amp;` sets `1 ` to `recursive`, not `1`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`set recursive=1 &amp;` sets `1 ` to `recursive`, not `1`.
</pre>
</div>
</content>
</entry>
<entry>
<title>win32/rm.bat: remove each files</title>
<updated>2013-01-11T10:21:49+00:00</updated>
<author>
<name>nobu</name>
<email>nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2013-01-11T10:21:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=101d458fdf1336b72030b38a1aec6231902f7ac5'/>
<id>101d458fdf1336b72030b38a1aec6231902f7ac5</id>
<content type='text'>
* win32/rm.bat: removing by wildcard errs on network file system, so
  remove each files.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38782 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* win32/rm.bat: removing by wildcard errs on network file system, so
  remove each files.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38782 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>win32/rm.bat: fix infinite loop</title>
<updated>2013-01-10T08:44:19+00:00</updated>
<author>
<name>nobu</name>
<email>nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2013-01-10T08:44:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=b7b183f682672de2e4e468e84fa865e7c1520ef8'/>
<id>b7b183f682672de2e4e468e84fa865e7c1520ef8</id>
<content type='text'>
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38763 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38763 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>	* win32/rm.bat: remove duplicated line.</title>
<updated>2010-12-29T11:33:54+00:00</updated>
<author>
<name>nobu</name>
<email>nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2010-12-29T11:33:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=3a28aaaa3a6c4d7f1692d0bf3943541c09dea435'/>
<id>3a28aaaa3a6c4d7f1692d0bf3943541c09dea435</id>
<content type='text'>
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30422 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30422 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
</feed>
