
Bat
iteye_3854
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
批处理之家
http://bbs.bathome.net/index.php原创 2012-02-09 19:45:13 · 1224 阅读 · 0 评论 -
批处理进度条
@echo off echo. echo. echo. set /a a=0 :a set /a a+=1 for %%a in (▏ ▎ ▍ ▌ ▋ ▊ ▉) do (set /p=%%a<nul &ping -n 1 127.1>nul &ping -n 1 127.1>nul &ping -n 1 127.1>nul ...原创 2012-02-09 20:26:04 · 5005 阅读 · 2 评论 -
bat2exe
Bat To Exe Converter Bat To Exe-Converter converts bat script files to exe files. There are some differences to normal bat files. You can create invisible applications, you can include additional b...原创 2012-02-21 11:14:03 · 1930 阅读 · 0 评论 -
Batch: %time% won't update in loop
I got a problem with a batch-file. Here it comes: echo %time% pause for /L %%N IN (0, 1, 3) DO ( echo %time% pause ) echo 3. %time% The first time in the loop is correct, but in the fo...原创 2012-02-22 11:57:38 · 157 阅读 · 0 评论