从输出中提取 Mac 地址

从输出中提取 Mac 地址

我试图从下面的输出中仅获取 mac 地址。它是一个运行并连接到 Cisco 交换机的脚本。

switch#show ip arp x.x.x.x
Protocol  Address          Age (min)  Hardware Addr   Type   Interface
Internet  xx.x.x.x             128   xxxx.xxxx.xxxx  ARPA   Vlanx

我尝试过使用cutandsed没有任何乐趣。有任何想法吗?

答案1

要获取以 开头的行的第四个字段Internet

awk '/^Internet/{print $4}'

相关内容