一、fping 命令详解
yum provides fping # 查找包名
yum -y install fping # 安装包
二、fping 批量筛选存活IP脚本
vim /tmp/ip.sh
!/bin/bash
fping -g 10.121.52.1/24 >/tmp/ip.txt #输出
cd /tmp/ && cat ip.txt | grep "is alive" >/tmp/alive_ip.txt #筛选
:wq! #保存并退出
chmod +x /tmp/ip.sh #赋予执行权限
./ip.sh >/dev/null 2>&1 && cat /tmp/alive_ip.txt #后台执行脚本并查看
>/dev/null 2>&1 #参数解释说明