projects
/
wxWidgets.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
better Sun CC fix: put the function in anonymous namespace instead of making it global
[wxWidgets.git]
/
distrib
/
msw
/
lower.bat
1
@
echo
off
2
Rem Make all files in a directory lower-case
3
dir
/
B
>
%TEMP%
\f
iles.tmp
4
5
set
len
=%
@LINES
[
%TEMP%
\f
iles.tmp
]
6
do
i
=
0
to
%
len by
1
7
set
line
=%
@LINE
[
%TEMP%
\f
iles.tmp
,%
i
]
8
ren
%line%
_
%line%
9
ren
_
%line%
%
@LOWER
[
%line%
]
10
enddo
11