phoenix924 当前离线
列兵
cjiabing (甲兵时代)当前离线
荣誉版主
@echo off :aa set input= set /p "input= 请输入:" findstr /i /c:"%input%" C:\Windows\System32\Drivers\etc\hosts&&echo;输入已存在,按任意键返回!&pause&goto aa echo;%input%>>C:\Windows\System32\Drivers\etc\hosts echo 添加完成! pause复制代码
TOP
bluewing009 (九影)当前离线
少校
awk 当前离线
上尉
@echo off set "str1=10.13.0.231 main.tttest.com" set "str2=10.13.0.231 main.ttmes.com" call :add "%str1%" call :add "%str2%" goto :eof :add findstr /i /c:"%~1" C:\Windows\System32\Drivers\etc\hosts if errorlevel 1 ( >>C:\Windows\System32\Drivers\etc\hosts echo,%~1 )复制代码