gpt4 book ai didi

windows - 获取网站IP地址的批处理脚本?

转载 作者:可可西里 更新时间:2023-11-01 11:14:46 28 4
gpt4 key购买 nike

我正在尝试整理一个批处理文件,它将 ping 一个网站,并将其 ip 分配给一个变量 - 我四处搜索,但还没有真正能够将一些东西放在一起。谁能把我推向正确的方向。

蒂姆。

最佳答案

您可以尝试 ping 命令。这个想法是获取 ping 输出的 [] 之间的部分。

@echo off
setlocal EnableDelayedExpansion
set myServer=google.de

for /f "tokens=1,2 delims=[]" %%a IN ('ping -n 1 !myServer!') DO (
if "%%b" NEQ "" set ip=%%b
)
echo ip is %ip%

关于windows - 获取网站IP地址的批处理脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3870090/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com