# 批量打开网页的小工具

By [tianshao](https://paragraph.com/@tianshao) · 2022-08-14

---

1.新建一个文本文档，输入如下字符：

@echo off for /f %%i in (123.txt) do (start chrome "%%i")

保存后将该文件的后缀名改为bat

2.再建一个文本文档，命名为123.txt（命名必须与上述括号中的名称一致）

3.将两个文件放在同一个文件夹中，将需要批量打开的网址复制在txt文件中

最后，直接双击之前的bat文件，就可批量打开网页

---

*Originally published on [tianshao](https://paragraph.com/@tianshao/htUghHMSwyWRIbDom5KF)*
