pyhx 当前离线
列兵
TOP
wc726842270 (枫中残雪)当前离线
大校
broly (Broly)当前离线
版主
@echo off rem 1.txt每行一个网址 rem 2.txt关键词用空格隔开,写在一行 for /f "delims=" %%i in (2.txt) do set "keyword=%%i" for /f "delims=" %%i in (1.txt) do ( curl -o $ %%i findstr /i /r %keyword% $ && echo %%i>>3.txt || echo %%i>>4.txt ) del $ /q复制代码
@echo off rem 1.txt每行一个网址 rem 2.txt关键词用空格隔开,写在一行 for /f "delims=" %%i in (2.txt) do set "keyword=%%i" for /f "delims=" %%i in (1.txt) do ( wget -O $ %%i findstr /i /r %keyword% $ && echo %%i>>3.txt || echo %%i>>4.txt ) del $ /q复制代码