gpt4 book ai didi

macos - 如何ping文件中的每个IP?

转载 作者:行者123 更新时间:2023-12-04 09:41:13 25 4
gpt4 key购买 nike

我有一个名为“ips”的文件,其中包含我需要 ping 的所有 ip。为了 ping 这些 IP,我使用以下代码:

cat ips|xargs ping -c 2

但是控制台向我展示了 ping 的用法,我不知道如何正确执行。我正在使用 Mac 操作系统

最佳答案

您需要使用选项 -n1xargs一次传递一个 IP 为 ping不支持多个IP:

$ cat ips | xargs -n1 ping -c 2

演示:
$ cat ips
127.0.0.1
google.com
bbc.co.uk

$ cat ips | xargs echo ping -c 2
ping -c 2 127.0.0.1 google.com bbc.co.uk

$ cat ips | xargs -n1 echo ping -c 2
ping -c 2 127.0.0.1
ping -c 2 google.com
ping -c 2 bbc.co.uk

# Drop the UUOC and redirect the input
$ xargs -n1 echo ping -c 2 < ips
ping -c 2 127.0.0.1
ping -c 2 google.com
ping -c 2 bbc.co.uk

关于macos - 如何ping文件中的每个IP?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14439755/

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