DOS
annkie
混迹于移动互联网和手机行业。
展开
-
批量复制IE临时文件(Temporary Internet Files)
<br />建一批处理文件:BatchCopyIETempFiles.bat<br /> <br />REM 批量复制IE临时文件中的SWF文件,示例为获取Android*.swf的swf文件。 cd /d "%userprofile%/Local Settings/Temporary Internet Files" for /f "tokens=*" %%i in ('dir/s/a/b android*.swf') do (xcopy "%%i" "D:/Android/SWF/" /h/y/i原创 2010-12-09 14:37:00 · 2216 阅读 · 0 评论 -
常用DOS批处理
<br />1.将poem1~poem319的文件内容依次追加到poem.txt中<br />;(1,1,319)表示从1以1为Step的方式增加到319,即从1-319次循环处理 For /L %%i in (1,1,319) do type poem%%i >> poem.txt原创 2011-04-28 17:02:00 · 555 阅读 · 0 评论