fyfy010 当前离线
列兵
went 当前离线
少校
@echo off REM url set "url=http://xxx.com/1.txt" REM fileName set "fileName=1.txt" REM download certutil -urlcache -split -f "%url%" "%fileName%" | findstr "0x" || set /p data=<"%fileName%" echo %data% REM --code-- del /f /q "%fileName%" pause&exit复制代码
TOP
netdzb 当前离线
上尉
set "url=http://wentli.qicp.vip/1.txt"复制代码
@echo off REM url set "url=http://wentli.qicp.vip/1.txt" REM powershell for /f "delims=" %%i in ('powershell -c "try{(Invoke-WebRequest -UseBasicParsing -Uri '%url%').Content}catch{'error'}"') do set "data=%%i" echo %data% pause&exit复制代码
hlzj88 当前离线
wget --user-agent="Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.3) Gecko/2008092416 Firefox/3.0.3" --no-check-certificate -c -N -t 0 -O 1.txt "http://wentli.qicp.vip/1.txt"复制代码