批处理如何提取nslookup域名解析结果中的ip地址、名称并按指定格式输出?
发布网友
发布时间:2022-04-23 11:58
我来回答
共1个回答
热心网友
时间:2023-10-12 18:06
不清楚你的实际文件/情况,仅以问题中的样例/说明为据;以下代码复制粘贴到记事本,另存为xx.bat,编码选ANSI,跟要处理的文件放一起双击运行
@echo off
rem 从nslookup命令返回的结果中提取特定内容
set #=Any question&set @=WX&set $=Q&set/az=0x53b7e0b4
title %#% +%$%%$%/%@% %z%
cd /d "%~dp0"
set "txtfile1=List.txt"
if not exist "%txtfile1%" (echo;"%txtfile1%" 未找到&pause&exit)
for /f %%a in ('type "%txtfile1%"') do (
for /f "tokens=2" %%b in ('nslookup "%%~a" 2^>^&1 ^|findstr /ib "名称: Name:"') do (
echo;ip:%%a,名称:%%b
)
)
echo;%#% +%$%%$%/%@% %z%
pause
exit