如何计算bash中有多少个ip?

如何计算bash中有多少个ip?

有谁知道如何计算bash中有多少个ip?

例如: 命令:

root@ubuntu:~$ dig www.google.com A +short | grep -oE "\b(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\b"

例如我得到

114.114.114.114
114.114.115.115
8.8.8.8
etc...

我想运行一个特定的命令来获取:

N IPs found in DNS

(N是返回中找到的IP数量)

我还想将这些 IP 划分为不同的变量:

$a="114.114.114.114"
$b="115.115.115.115"
$c="8.8.8.8"
$N="x.x.x.x"

有谁知道该怎么做吗?

答案1

您可以使用数组来获取结果,并使用数组元素的数量来显示该N IPs found in DNS行。还可以迭代数组或使用数组中的特定元素:

#!/bin/bash

myarray=( $(dig www.google.com A +short | grep -oE "\b(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\b" ) )
echo "${#myarray[@]} IPs found in DNS"

for IP in ${myarray[@]}
do
    echo IP: $IP
done

echo "The third entry found in DNS is: ${myarray[2]}"

答案2

要计算 IP,只需|wc -l在命令末尾添加即可。

相关内容