wxWidgets/distrib/msw/lower.bat
Julian Smart f9ceab7ce6 Ditribution script mods;
Use wxImageList instead of wxGenericImageList where possible
in wxListCtrl


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16841 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-28 08:54:00 +00:00

12 lines
241 B
Batchfile
Executable File

@echo off
Rem Make all files in a directory lower-case
dir /B > %TEMP%\files.tmp
set len=%@LINES[%TEMP%\files.tmp]
do i = 0 to %len by 1
set line=%@LINE[%TEMP%\files.tmp,%i]
ren %line% _%line%
ren _%line% %@LOWER[%line%]
enddo