shell脚本ping多台主机的代码

发布时间:2020-01-04编辑:脚本学堂
一段shell脚本,用于ping多台主机ip地址,命令行接收多个ip地址作为参数,将ping结果保存到文件host.txt中。

shell/ target=_blank class=infotextkey>shell脚本连续ping多台主机
 

复制代码 代码示例:

#!/bin/sh
#
#fileName:ping.sh
#

if test $# -eq 0
then
    echo "Please input IP!"
else
    for ipstr in $*
    do
        ping -c5 $ipstr >>Host.txt
        echo "" >> Host.txt
    done
fi