标题: [文本处理] 批处理怎么一次打开25个网页然后,关掉浏览器,循环? [打印本页]
作者: xzy1006 时间: 2018-12-17 21:52 标题: 批处理怎么一次打开25个网页然后,关掉浏览器,循环?
- @echo off
- ::设置间隔时间
- set t=25
- for /f "tokens=*" %%i in (link1.txt) do (
- start "iexplore" "%%i"
- ping -n %t% 127.1>nul
- taskkill /f /im iexplore.exe
- ping -n 2 127.1>nul)
复制代码
目前这个批处理,只能一次打开一个网址,然后关掉浏览器,循环!
怎么改进成一次打开25个网页然后,关掉浏览器,再打开25个网址,关掉浏览器,循环!
非常感谢!
作者: heyoug 时间: 2018-12-18 14:30
传说中的恶作剧?
作者: xzy1006 时间: 2018-12-18 14:52
回复 2# heyoug
不是啊,这是网站需要用到的!新人求助
作者: flashercs 时间: 2018-12-18 15:04
本帖最后由 flashercs 于 2018-12-18 15:59 编辑
- @echo off
- setlocal enabledelayedexpansion
- ::设置间隔时间
- set t=25
- set /a n=1
- :loop
- for /f "tokens=*" %%i in (link1.txt) do (
- start "iexplore" "%%i"
- ping -n %t% 127.1>nul
- if !n! geq 25 (
- REM 延迟60秒
- timeout /t 60 /nobreak
- taskkill /f /im iexplore.exe
- ping -n 2 127.1>nul
- set /a n=1
- ) else (
- set /a n+=1
- )
- )
- goto loop
- endlocal
复制代码
作者: xzy1006 时间: 2018-12-18 15:22
本帖最后由 xzy1006 于 2018-12-18 15:51 编辑
回复 4# flashercs
搞定啦,谢谢!
作者: xzy1006 时间: 2018-12-18 15:50
回复 5# xzy1006
搞定啦,谢谢!
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |