楼主可以考虑把这个生成的列表内容发上来(1910行):
@echo off
setlocal EnableDelayedExpansion
cd.>List.txt
for /f "tokens=1* delims= " %%i in ('help^|findstr ""') do (
if !N! GTR 0 (
echo !N! - %%i
>>List.txt echo %%i
>>List.txt echo.====================
>>List.txt cmd /c %%i/?
>>List.txt echo.
)
set /a N+=1
)
exit
这个也可以:
@echo off
setlocal EnableDelayedExpansion
cd.>List.txt
for /f "tokens=1* delims= " %%i in ('help^|findstr ""') do (
if !N! GTR 0 (
echo !N! - %%i
>>%%i.txt cmd /c %%i/?
)
set /a N+=1
)
exit
Last edited by zh159 on 2007-4-20 at 12:46 AM ]