一个批处理,比如ipconfig ⼀all 我只想取出IP地址和mac地址然后输出到abc.txt,怎么写?

2025-01-04 07:56:04
推荐回答(3个)
回答1:

--------------------------------------------------------------
echo off&cls
wmic nicconfig get ipaddress,macaddress>>abc.txt
-----------------------------------------------------------------
不知道能不能满足你的要求。。

回答2:

del ip.txt 2>nul
for /f "tokens=2 delims=:" %%i in ('ipconfig/all^|findstr Address') do echo %%i>>ip.txt

回答3:

ifconfig | grep $your IP > abc.txt
ifconfig | grep $your mac >> abc.txt