Symbian下自动切换SDK的批处理代码
2010-10-20 08:00:40 来源:WEB开发网核心提示:相信大家都经常安装好几个SDK,切换来切换去确实麻烦,所以写了下面的批处理代码实现自动切换SDK,@echo off@color btitle Series60 SDK自动切换工具/**制作人:孙东风**/:xstartclsdel info.txtdevices>>info.txtfor /f "
相信大家都经常安装好几个SDK,切换来切换去确实麻烦,所以写了下面的批处理代码实现自动切换SDK。
@echo off
@color b
title Series60 SDK自动切换工具/******制作人:孙东风******/
:xstart
cls
del info.txt
devices>>info.txt
for /f "delims=" %%i in (info.txt) do echo %%i
set /p selectindex=请输入您所选择的SDK的序列号(从1开始计数):
for /f "tokens=1,* delims=:" %%a in ('findstr /n . info.txt') do if %%a==%selectindex% devices -setdefault ^@%%b
goto xstart
把上面代码保存为*.bat格式即可。
[]
赞助商链接